Skip to content

Commit

Permalink
Guess these things need unique names.
Browse files Browse the repository at this point in the history
  • Loading branch information
voided committed Mar 4, 2024
1 parent 5002d8d commit f0d1778
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ jobs:
ZIP_FILENAME="${{ env.PROJECT }}-${FILENAME}-${PLATFORM,}.zip"
echo "ZIP_FILENAME=${ZIP_FILENAME}" >> $GITHUB_ENV
echo "ARTIFACT_NAME=${{ env.PROJECT }}-${FILENAME}-${PLATFORM,}" >> $GITHUB_ENV
- name: Package release - Windows
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && startsWith(matrix.os, 'windows-latest')
Expand All @@ -159,6 +160,7 @@ jobs:

- uses: actions/upload-artifact@v4
name: Upload artifacts
if: github.event_name == 'push' && github.ref == 'refs/heads/master' && (startsWith(matrix.os, 'windows-latest') || startsWith(matrix.os, 'ubuntu-latest'))
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
with:
name: "${{ env.ARTIFACT_NAME }}"
path: "extension/build/package/${{ env.ZIP_FILENAME }}"

0 comments on commit f0d1778

Please sign in to comment.