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 - name: Install build-dependencies
run: | run: |
msys2 -c './build-win64.sh --prepare' msys2 -c './build-win64.sh --prepare'
- name: Build Dino (Meson, without saving) - name: Build Dino+ (Meson, without saving)
run: | run: |
msys2 -c './build-win64.sh -s meson -c -b -t -w' msys2 -c './build-win64.sh -s meson -c -b -t -w'
- name: Build Dino (CMake) - name: Build Dino+ (CMake)
run: | run: |
msys2 -c './build-win64.sh -s cmake -c -b -t -i' msys2 -c './build-win64.sh -s cmake -c -b -t -i'
- 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-plus-installer
path: windows-installer/dino-installer.exe path: windows-installer/dino-installer.exe
- name: Release Dino installer - name: Release Dino+ installer
if: ${{ github.ref_type == 'tag' }} if: ${{ github.ref_type == 'tag' }}
uses: svenstaro/upload-release-action@2.9.0 uses: svenstaro/upload-release-action@2.9.0
with: with:
repo_token: ${{ secrets.GITHUB_TOKEN }} repo_token: ${{ secrets.GITHUB_TOKEN }}
file: windows-installer/dino-installer.exe file: windows-installer/dino-installer.exe
asset_name: dino-installer.exe asset_name: dino-plus-installer.exe
tag: ${{ github.ref }} 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 file: _packages/dino-plus.deb
asset_name: dino-plus.deb asset_name: dino-plus.deb
tag: ${{ github.ref }} tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }} release_name: Dino+ ${{ github.ref_name }}
build-meson: build-meson:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
@ -57,7 +57,7 @@ jobs:
with: with:
manifest-path: im.dino.Dino.json manifest-path: im.dino.Dino.json
build-bundle: true build-bundle: true
- name: Release Dino installer - name: Release Dino+ flatpak
if: ${{ github.ref_type == 'tag' }} if: ${{ github.ref_type == 'tag' }}
uses: svenstaro/upload-release-action@2.9.0 uses: svenstaro/upload-release-action@2.9.0
with: with:
@ -65,4 +65,4 @@ jobs:
file: app.flatpak file: app.flatpak
asset_name: app.flatpak asset_name: app.flatpak
tag: ${{ github.ref }} tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }} release_name: Dino+ ${{ github.ref_name }}