Skip to content

Commit ce05c50

Browse files
committed
fix workflows
1 parent f1b0368 commit ce05c50

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,8 @@ jobs:
9999
release:
100100
runs-on: ubuntu-latest
101101
needs: [build-android, build-windows]
102+
permissions:
103+
contents: write
102104
steps:
103105
- uses: actions/checkout@v3
104106
- name: Download Android artifact
@@ -115,7 +117,9 @@ jobs:
115117
uses: softprops/action-gh-release@v1
116118
with:
117119
files: |
118-
out/*
120+
src/proto/*.proto
121+
out/android/*
122+
out/windows/*
119123
repo_token: ${{ secrets.GITHUB_TOKEN }}
120124
tag_name: ${{ github.event.inputs.tag_name }}
121125
title: Release ${{ github.event.inputs.tag_name }}

0 commit comments

Comments
 (0)