Skip to content

Update index.js

Update index.js #6

Workflow file for this run

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