Skip to content

Commit

Permalink
ci: Run real world tests on dev branch too
Browse files Browse the repository at this point in the history
  • Loading branch information
FabianLars committed Jul 2, 2024
1 parent 621de48 commit 0410d88
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
projectPath: ./.github/fixtures/example-with-tauri-v1
includeDebug: true
includeRelease: false
tagName: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'example-with-tauri-v__VERSION__' || '' }}
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-with-tauri-v__VERSION__' || '' }}
releaseName: 'Release example with preconfigured Tauri app v__VERSION__ for tauri-v1'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand All @@ -95,7 +95,7 @@ jobs:
appVersion: ../package.json # relative to tauri.conf.json
includeDebug: true
includeRelease: false
tagName: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'example-v__VERSION__' || '' }}
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-v__VERSION__' || '' }}
releaseName: 'Release example app v__VERSION__ for tauri-v1'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
projectPath: ./.github/fixtures/example-with-tauri-v2
includeDebug: true
includeRelease: false
tagName: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'example-with-tauri-v__VERSION__' || '' }}
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-with-tauri-v__VERSION__' || '' }}
releaseName: 'Release example with preconfigured Tauri app v__VERSION__ for tauri-v2'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand All @@ -188,7 +188,7 @@ jobs:
appVersion: ../package.json # relative to tauri.conf.json
includeDebug: true
includeRelease: false
tagName: ${{ github.event.pull_request.head.repo.full_name == github.repository && 'example-v__VERSION__' || '' }}
tagName: ${{ !github.event.pull_request.head.repo.fork && 'example-v__VERSION__' || '' }}
releaseName: 'Release example app v__VERSION__ for tauri-v2'
releaseBody: 'See the assets to download this version and install.'
releaseDraft: true
Expand Down

0 comments on commit 0410d88

Please sign in to comment.