-
Notifications
You must be signed in to change notification settings - Fork 1
53 lines (51 loc) · 1.15 KB
/
01_build_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
name: build_image_for_test
on:
push:
branches:
- 'test'
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://www.myget.org/F/public-choco-dev/api/v2/package -k=${{ secrets.MYGET_API_KEY }}