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