Skip to content

Commit

Permalink
Fix extensions in upload to release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Feb 2, 2022
1 parent 4e0e342 commit 1ef8cf7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.get_upload_url.outputs.url}}
asset_path: ./dist/authme-${{steps.version.outputs.prop}}-linux-x64-installer.exe
asset_name: authme-${{steps.version.outputs.prop}}-linux-x64-installer.exe
asset_path: ./dist/authme-${{steps.version.outputs.prop}}-linux-x64-installer.appimage
asset_name: authme-${{steps.version.outputs.prop}}-linux-x64-installer.appimage
asset_content_type: application/octet-stream
- name: Upload the linux portable asset
if: runner.os == 'Linux'
Expand All @@ -106,8 +106,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.get_upload_url.outputs.url}}
asset_path: ./dist/authme-${{steps.version.outputs.prop}}-mac-x64-installer.exe
asset_name: authme-${{steps.version.outputs.prop}}-mac-x64-installer.exe
asset_path: ./dist/authme-${{steps.version.outputs.prop}}-mac-x64-installer.dmg
asset_name: authme-${{steps.version.outputs.prop}}-mac-x64-installer.dmg
asset_content_type: application/octet-stream
- name: Upload the mac portable asset
if: runner.os == 'macOS'
Expand Down

0 comments on commit 1ef8cf7

Please sign in to comment.