mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
Fix release asset upload to support glob patterns
Remove duplicate upload step using actions/upload-release-asset@v1 which doesn't support wildcards. Keep only the gh CLI upload which properly handles multiple files. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
27d84aa895
commit
f05aa8d5a3
1 changed files with 1 additions and 12 deletions
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
|
|
@ -55,18 +55,7 @@ jobs:
|
|||
- name: Package and make
|
||||
run: npm run make
|
||||
|
||||
- name: Upload Windows release assets
|
||||
if: matrix.os == 'windows-latest'
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/${{ github.repository }}/releases/${{ needs.draft-release.outputs.release-id }}/assets
|
||||
asset_path: out/make/squirrel.windows/x64/*.exe
|
||||
asset_name: SKiTCH-Controller-${{ needs.draft-release.outputs.version }}-Setup.exe
|
||||
asset_content_type: application/octet-stream
|
||||
|
||||
- name: Upload all Windows assets
|
||||
- name: Upload Windows assets
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
for file in out/make/squirrel.windows/x64/*; do
|
||||
|
|
|
|||
Loading…
Reference in a new issue