Skip to content

Commit

Permalink
vcbvbvc
Browse files Browse the repository at this point in the history
  • Loading branch information
RusselWebber committed Dec 6, 2024
1 parent 475f1f7 commit 3ced3c0
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,12 @@ jobs:

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

# Create release
- name: GitHub release
id: release
run: gh release create ${{ github.ref }} "xlduckdb-${{ github.sha }}.zip" --generate-notes --notes-start-tag ${{ steps.previousTag.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: ncipollo/release-action@v1
with:
artifacts: "xlduckdb-${{ github.sha }}.zip"
makeLatest: true
allowUpdates: true
artifactErrorsFailBuild: true

0 comments on commit 3ced3c0

Please # to comment.