Skip to content

Commit 1d79544

Browse files
committed
fix(.github/workflows/versions.yml): fix invalid versions
1 parent bee0fb3 commit 1d79544

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/versions.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v3
2121
- uses: ./
22-
- name: Verify latest
22+
with:
23+
bpkg-version: 1.0.0
24+
- name: Verify v1.0.0
2325
run: |
2426
bpkg --version | grep '1.0.0'
2527
@@ -28,6 +30,8 @@ jobs:
2830
steps:
2931
- uses: actions/checkout@v3
3032
- uses: ./
31-
- name: Verify latest
33+
- name: Verify v1.1.0
34+
with:
35+
bpkg-version: 1.1.0
3236
run: |
3337
bpkg --version | grep '1.1.0'

0 commit comments

Comments
 (0)