Skip to content

Commit fc61513

Browse files
committed
fix(.github/workflows/versions.yml): fix version config
1 parent 1d79544 commit fc61513

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

.github/workflows/versions.yml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: ./
2222
with:
2323
bpkg-version: 1.0.0
24-
- name: Verify v1.0.0
24+
- name: Verify bpkg@1.0.0
2525
run: |
2626
bpkg --version | grep '1.0.0'
2727
@@ -30,8 +30,30 @@ jobs:
3030
steps:
3131
- uses: actions/checkout@v3
3232
- uses: ./
33-
- name: Verify v1.1.0
3433
with:
3534
bpkg-version: 1.1.0
35+
- name: Verify [email protected]
3636
run: |
3737
bpkg --version | grep '1.1.0'
38+
39+
v1-1-1:
40+
runs-on: ubuntu-latest
41+
steps:
42+
- uses: actions/checkout@v3
43+
- uses: ./
44+
with:
45+
bpkg-version: 1.1.1
46+
- name: Verify [email protected]
47+
run: |
48+
bpkg --version | grep '1.1.1'
49+
50+
v1-1-2:
51+
runs-on: ubuntu-latest
52+
steps:
53+
- uses: actions/checkout@v3
54+
- uses: ./
55+
with:
56+
bpkg-version: 1.1.2
57+
- name: Verify [email protected]
58+
run: |
59+
bpkg --version | grep '1.1.2'

0 commit comments

Comments
 (0)