From 2d9828521e05915fdb603f1ad90f78c5ffed3459 Mon Sep 17 00:00:00 2001 From: Matt Gabrenya Date: Tue, 13 Feb 2024 16:39:32 -0700 Subject: [PATCH] revert: remove testing settings --- .github/workflows/tauri-release.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tauri-release.yml b/.github/workflows/tauri-release.yml index 7f6c6c7e1..be937a203 100644 --- a/.github/workflows/tauri-release.yml +++ b/.github/workflows/tauri-release.yml @@ -1,7 +1,10 @@ name: 'publish' # This will trigger the action on each push to the `release` branch. -on: [push] +on: + push: + branches: + - main jobs: publish-tauri: @@ -11,7 +14,11 @@ jobs: fail-fast: false matrix: platform: [ - macos-11, + macos-12, + macos-14, + ubuntu-20.04 + # Someone who cares can make windows work. + # windows-latest ] runs-on: ${{ matrix.platform }} @@ -54,5 +61,4 @@ jobs: tauriScript: 'nix develop .#tauri-shell --command cargo tauri' tagName: app-v__VERSION__-${{ github.sha }} # the action automatically replaces \_\_VERSION\_\_ with the app version releaseName: 'App v__VERSION__-${{ github.sha }}' - releaseBody: 'See the assets to download this version and install.' - releaseDraft: true \ No newline at end of file + releaseBody: 'See the assets to download this version and install.' \ No newline at end of file