Skip to content

Commit

Permalink
Upload windows updater asset
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Mar 6, 2023
1 parent 8727566 commit 5b99ca4
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ jobs:
asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.msi
asset_content_type: application/octet-stream

- name: Upload the windows updater asset
if: runner.os == 'Windows'
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.get_upload_url.outputs.url}}
asset_path: ./core/target/release/upload/authme-${{steps.version.outputs.prop}}-windows-x64.zip
asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.zip
asset_content_type: application/octet-stream

# Linux
- name: Upload the linux installer asset
if: runner.os == 'Linux'
Expand Down

0 comments on commit 5b99ca4

Please sign in to comment.