Skip to content

Commit

Permalink
Fix from Dino to Dino+ in CI
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Logaev <[email protected]>
  • Loading branch information
mxlgv committed Apr 15, 2024
1 parent 3faef91 commit ed14d44
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build-win64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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 }}
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -57,12 +57,12 @@ 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/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: app.flatpak
asset_name: app.flatpak
tag: ${{ github.ref }}
release_name: Dino ${{ github.ref_name }}
release_name: Dino+ ${{ github.ref_name }}

0 comments on commit ed14d44

Please sign in to comment.