Skip to content

Commit

Permalink
chore(ci): Show what gets bundled
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Jan 12, 2024
1 parent 657d1b1 commit 5adfdc2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/post-release.yml
Expand Up @@ -101,11 +101,13 @@ jobs:
cp {CHANGELOG.md,docs/*} "$staging/doc/"
if [ "${{ matrix.os }}" = "windows-2019" ]; then
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}.exe" "$staging/"
ls -l "$staging"
cd "$staging"
7z a "../$staging.zip" .
echo "ASSET=$staging.zip" >> $GITHUB_ENV
else
cp "target/${{ matrix.target }}/release/${{ env.BIN_NAME }}" "$staging/"
ls -l "$staging"
tar czf "$staging.tar.gz" -C "$staging" .
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
fi
Expand Down

0 comments on commit 5adfdc2

Please sign in to comment.