From ed14d44c67e3be6920bf6db254150bf6957b8d88 Mon Sep 17 00:00:00 2001 From: Maxim Logaev Date: Mon, 15 Apr 2024 20:12:56 +0300 Subject: [PATCH] Fix from Dino to Dino+ in CI Signed-off-by: Maxim Logaev --- .github/workflows/build-win64.yml | 16 ++++++++-------- .github/workflows/build.yml | 6 +++--- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-win64.yml b/.github/workflows/build-win64.yml index 4ed2ed1c..31c245ab 100644 --- a/.github/workflows/build-win64.yml +++ b/.github/workflows/build-win64.yml @@ -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 }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a0e5635d..736dc8b7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 }}