Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuza committed Nov 6, 2024
1 parent bc7cfd9 commit e4c95bd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,19 @@ jobs:
echo "ARTIFACT_NAME=mannager-installer.msi" >> "$GITHUB_ENV"
- name: Upload asset
if: matrix.target.artifact == 'linux'
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ./${{ matrix.target.os }}/${{ env.ARTIFACT_NAME }}
asset_path: ${{ env.ARTIFACT_NAME }}
asset_name: ${{ env.ARTIFACT_NAME }}
asset_content_type: ${{ matrix.target.asset_type }}

- name: Upload asset
if: matrix.target.artifact == 'windows'
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: ${{ env.ARTIFACT_NAME }}
asset_name: ./${{ matrix.target.os }}/${{ env.ARTIFACT_NAME }}
asset_content_type: ${{ matrix.target.asset_type }}

0 comments on commit e4c95bd

Please sign in to comment.