Added auto uploading releases (Win64)
Signed-off-by: Maxim Logaev <maxlogaev@proton.me>
This commit is contained in:
parent
6fd8f9a45c
commit
38a547aee5
13
.github/workflows/build-win64.yml
vendored
13
.github/workflows/build-win64.yml
vendored
|
@ -16,11 +16,20 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
msys2 -c './build-win64.sh --prepare'
|
msys2 -c './build-win64.sh --prepare'
|
||||||
msys2 -c './build-win64.sh'
|
msys2 -c './build-win64.sh'
|
||||||
- name: Build Dino Installer
|
- name: Build Dino installer
|
||||||
run: |
|
run: |
|
||||||
msys2 -c './build-win64.sh --build-installer'
|
msys2 -c './build-win64.sh --build-installer'
|
||||||
- name: Upload Dino Installer
|
- name: Upload Dino installer
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: dino-installer
|
name: dino-installer
|
||||||
path: windows-installer/dino-installer.exe
|
path: windows-installer/dino-installer.exe
|
||||||
|
- name: Release Dino installer
|
||||||
|
if: ${{ github.ref_type == 'tag' }}
|
||||||
|
uses: svenstaro/upload-release-action@2.9.0
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: windows-installer/dino-installer.exe
|
||||||
|
asset_name: dino-installer.exe
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
overwrite: true
|
||||||
|
|
Loading…
Reference in a new issue