We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8727566 commit 5b99ca4Copy full SHA for 5b99ca4
.github/workflows/release-artifacts.yml
@@ -83,6 +83,17 @@ jobs:
83
asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.msi
84
asset_content_type: application/octet-stream
85
86
+ - name: Upload the windows updater asset
87
+ if: runner.os == 'Windows'
88
+ uses: actions/upload-release-asset@v1.0.2
89
+ env:
90
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
91
+ with:
92
+ upload_url: ${{steps.get_upload_url.outputs.url}}
93
+ asset_path: ./core/target/release/upload/authme-${{steps.version.outputs.prop}}-windows-x64.zip
94
+ asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.zip
95
+ asset_content_type: application/octet-stream
96
+
97
# Linux
98
- name: Upload the linux installer asset
99
if: runner.os == 'Linux'
0 commit comments