We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c07ee3 commit b3bdf65Copy full SHA for b3bdf65
.github/workflows/release.yml
@@ -98,7 +98,7 @@ jobs:
98
STAGING="scarb-${{ github.ref_name }}-${{ matrix.target }}"
99
echo "STAGING=$STAGING" >> $GITHUB_ENV
100
101
- ci/package-release.sh "${{ matrix.target }}" "$STAGING"
+ pkg/archive/package.sh "${{ matrix.target }}" "$STAGING"
102
103
- name: Upload artifact
104
uses: actions/upload-artifact@v3
@@ -139,7 +139,7 @@ jobs:
139
shell: bash
140
run: |
141
archive=$(find target/verify -name 'scarb-*.zip' -o -name 'scarb-*.tar.gz')
142
- ci/verify-release.sh "$archive" "${{ github.ref_name }}"
+ pkg/archive/verify.sh "$archive" "${{ github.ref_name }}"
143
144
verify-cargo-package:
145
name: cargo publish --dry-run
ci/package-release.sh pkg/archive/package.sh
ci/verify-release.sh pkg/archive/verify.sh
0 commit comments