Skip to content

Commit 9fe5c83

Browse files
committed
ci: Adds Upload Files to Release step
1 parent fc87bc0 commit 9fe5c83

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,13 @@ jobs:
134134
${{ steps.changelog.outputs.changelog }}
135135
draft: false
136136
prerelease: false
137+
138+
# Upload Files to Release
139+
- name: Upload Files to Release
140+
uses: svenstaro/upload-release-action@v2
141+
with:
142+
repo_token: ${{ secrets.GITHUB_TOKEN }}
143+
file: build/*.zip
144+
tag: ${{ github.ref }}
145+
overwrite: true
146+
file_glob: true

0 commit comments

Comments
 (0)