We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef5e55d commit ff4d548Copy full SHA for ff4d548
.github/workflows/verify-package.yml
@@ -80,5 +80,6 @@ jobs:
80
- name: Verify Artifacts
81
run: |
82
ls -lh dist/*.tar.gz dist/*.zip
83
- test -f dist/function-stream-*.tar.gz
84
- test -f dist/function-stream-*-lite.tar.gz
+ VERSION=$(grep '^version' Cargo.toml | head -1 | awk -F '"' '{print $2}')
+ test -f "dist/function-stream-${VERSION}.tar.gz"
85
+ test -f "dist/function-stream-${VERSION}-lite.tar.gz"
0 commit comments