Fix from Dino to Dino+ in CI

Signed-off-by: Maxim Logaev <maxlogaev@proton.me>
This commit is contained in:
Maxim Logaev 2024-04-15 20:12:56 +03:00
parent a2fd5af13e
commit 8481890b52
2 changed files with 11 additions and 11 deletions

View file

@ -17,26 +17,26 @@ jobs:
- name: Install build-dependencies
run: |
msys2 -c './build-win64.sh --prepare'
- name: Build Dino (Meson, without saving)
- name: Build Dino+ (Meson, without saving)
run: |
msys2 -c './build-win64.sh -s meson -c -b -t -w'
- name: Build Dino (CMake)
- name: Build Dino+ (CMake)
run: |
msys2 -c './build-win64.sh -s cmake -c -b -t -i'
- name: Build Dino installer
- name: Build Dino+ installer
run: |
msys2 -c './build-win64.sh --build-installer'
- name: Upload Dino installer
- name: Upload Dino+ installer
uses: actions/upload-artifact@v4
with:
name: dino-installer
name: dino-plus-installer
path: windows-installer/dino-installer.exe
- name: Release Dino installer
- 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
asset_name: dino-plus-installer.exe
tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }}
release_name: Dino+ ${{ github.ref_name }}

View file

@ -28,7 +28,7 @@ jobs:
file: _packages/dino-plus.deb
asset_name: dino-plus.deb
tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }}
release_name: Dino+ ${{ github.ref_name }}
build-meson:
runs-on: ubuntu-22.04
@ -57,7 +57,7 @@ jobs:
with:
manifest-path: im.dino.Dino.json
build-bundle: true
- name: Release Dino installer
- name: Release Dino+ flatpak
if: ${{ github.ref_type == 'tag' }}
uses: svenstaro/upload-release-action@2.9.0
with:
@ -65,4 +65,4 @@ jobs:
file: app.flatpak
asset_name: app.flatpak
tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }}
release_name: Dino+ ${{ github.ref_name }}