Update build.yml

This commit is contained in:
Roman Kelesidis 2025-01-09 00:09:22 +07:00
commit 1457d739dc

View file

@ -32,10 +32,10 @@ jobs:
run: | run: |
ZIP_NAME="torrentpier-${{ steps.get_commit_hash.outputs.COMMIT_HASH }}.zip" ZIP_NAME="torrentpier-${{ steps.get_commit_hash.outputs.COMMIT_HASH }}.zip"
zip -r "$ZIP_NAME" . -x ".git/*" ".github/*" zip -r "$ZIP_NAME" . -x ".git/*" ".github/*"
echo "zip_name=$ZIP_NAME" >> $GITHUB_OUTPUT echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_OUTPUT
- name: Upload Archive - name: Upload Archive
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: TorrentPier name: TorrentPier
path: ${{ steps.create_zip.outputs.zip_name }} path: ${{ steps.create_zip.outputs.ZIP_NAME }}