Skip to content

Commit

Permalink
ci: add step "Upload binaries to release"
Browse files Browse the repository at this point in the history
  • Loading branch information
pluveto committed Jun 23, 2024
1 parent bd65f02 commit 2d99c81
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,14 @@ jobs:
tag_name: ${{ github.event.inputs.tag }}
release_name: Upgit ${{ github.event.inputs.tag }}
body: ${{ steps.changelog.outputs.changes }}
asset_files: 'dist/'
draft: false
prerelease: ${{ github.event.inputs.prerelease }}

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/**/*
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit 2d99c81

Please sign in to comment.