There was an error while loading. Please reload this page.
1 parent 39127eb commit 96eaebfCopy full SHA for 96eaebf
1 file changed
.github/workflows/publish.yml
@@ -60,9 +60,15 @@ jobs:
60
# run: |
61
# git config --local user.email "github-actions[bot]@users.noreply.github.com"
62
# git config --local user.name "github-actions[bot]"
63
+
64
+ - name: Install GitHub CLI
65
+ run: sudo apt-get install gh -y
66
67
- name: Create GitHub release
68
if: steps.check.outputs.version_equal == 'true'
69
run: |
- gh release create "v${{ steps.check.outputs.new_version }}" --title "v${{ steps.check.outputs.new_version }}"
70
+ gh release create "v${{ steps.check.outputs.new_version }}" \
71
+ dist/* \
72
+ --title "v${{ steps.check.outputs.new_version }}"
73
env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
74
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments