Update index.js #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release app8 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'app8/**' | |
| - '.github/workflows/app8.yml' | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Publish v1 & v5 to Registry | |
| uses: elgohr/Publish-Docker-Github-Action@master | |
| env: | |
| VERSION: working | |
| with: | |
| name: jakousa/dwk-app8 | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| tags: v1,v5 | |
| buildargs: VERSION | |
| context: app8 | |
| - name: Publish v2 to Registry | |
| uses: elgohr/Publish-Docker-Github-Action@master | |
| env: | |
| VERSION: broken | |
| with: | |
| name: jakousa/dwk-app8 | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| tags: v2 | |
| buildargs: VERSION | |
| context: app8 | |
| - name: Publish v3 to Registry | |
| uses: elgohr/Publish-Docker-Github-Action@master | |
| env: | |
| VERSION: random | |
| with: | |
| name: jakousa/dwk-app8 | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| tags: v3 | |
| buildargs: VERSION | |
| context: app8 | |
| - name: Publish v4 to Registry | |
| uses: elgohr/Publish-Docker-Github-Action@master | |
| env: | |
| VERSION: delayed_broken | |
| with: | |
| name: jakousa/dwk-app8 | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| tags: v4 | |
| buildargs: VERSION | |
| context: app8 |