Skip to content

Commit

Permalink
revert: remove testing settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mattyg committed Feb 13, 2024
1 parent efba343 commit 2d98285
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/tauri-release.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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 }}
Expand Down Expand Up @@ -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
releaseBody: 'See the assets to download this version and install.'

0 comments on commit 2d98285

Please sign in to comment.