Skip to content

Commit

Permalink
feat(workflow/release): add artifact upload step to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maxchang3 committed Nov 15, 2024
1 parent 3ca2bf2 commit e2db920
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,12 @@ jobs:
run: pnpx changelogithub
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload build artifacts
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 e2db920

Please sign in to comment.