Skip to content

Commit ff4d548

Browse files
committed
fix
1 parent ef5e55d commit ff4d548

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/verify-package.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,6 @@ jobs:
8080
- name: Verify Artifacts
8181
run: |
8282
ls -lh dist/*.tar.gz dist/*.zip
83-
test -f dist/function-stream-*.tar.gz
84-
test -f dist/function-stream-*-lite.tar.gz
83+
VERSION=$(grep '^version' Cargo.toml | head -1 | awk -F '"' '{print $2}')
84+
test -f "dist/function-stream-${VERSION}.tar.gz"
85+
test -f "dist/function-stream-${VERSION}-lite.tar.gz"

0 commit comments

Comments
 (0)