-
Notifications
You must be signed in to change notification settings - Fork 31
63 lines (57 loc) · 1.53 KB
/
app8.yml
File metadata and controls
63 lines (57 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
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