-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (54 loc) · 1.16 KB
/
01_build_and_push_image.yml
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
name: build_and_push_image
on:
push:
branches:
- 'master'
- 'main'
jobs:
build-2019:
runs-on: windows-2019
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Choco pack
uses: crazy-max/ghaction-chocolatey@v2
with:
args: pack
-
name: Choco install
uses: crazy-max/ghaction-chocolatey@v2
with:
args: install dive -y -s .
-
name: Dive run
run: |
dive -v
shell: powershell
build-2022:
runs-on: windows-2022
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Choco pack
uses: crazy-max/ghaction-chocolatey@v2
with:
args: pack
-
name: Choco install
uses: crazy-max/ghaction-chocolatey@v2
with:
args: install dive -y -s .
-
name: Dive run
run: |
dive -v
shell: powershell
-
name: Choco push
uses: crazy-max/ghaction-chocolatey@v2
with:
args: push --source https://push.chocolatey.org/ -k=${{ secrets.CHOCO_API_KEY }} -v