Skip to content

Commit

Permalink
Simplify zip name
Browse files Browse the repository at this point in the history
  • Loading branch information
RusselWebber committed Dec 6, 2024
1 parent 15a7409 commit 0c227ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:

# Never mind that the previous step just did this...
- name: ZIP release artifact
run: Compress-Archive -Path ./xlDuckDb/bin/x64/Release/*.* -Destination xlduckdb-${{ github.sha }}.zip
run: Compress-Archive -Path ./xlDuckDb/bin/x64/Release/*.* -Destination xlduckdb.zip

# Create release
- uses: ncipollo/release-action@v1
with:
artifacts: "xlduckdb-${{ github.sha }}.zip"
artifacts: "xlduckdb.zip"
makeLatest: true
allowUpdates: true
artifactErrorsFailBuild: true

0 comments on commit 0c227ca

Please sign in to comment.