Skip to content

Commit

Permalink
changed github actions to only build the application for every commit…
Browse files Browse the repository at this point in the history
… on every branch except main
  • Loading branch information
Piyuuussshhh committed Sep 17, 2024
1 parent 1768a25 commit e5e4f85
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test_build_on_push_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ name: "test-build-on-push-and-pr"

on:
push:
branches:
- '**' # This makes the workflow run on pushes to any branch.
branches-ignore:
- 'main'
pull_request:
branches-ignore:
- 'main'
branches:
- '**' # This makes the workflow run on pushes to any branch.

# This workflow will build your Tauri app without uploading it anywhere.

Expand Down

0 comments on commit e5e4f85

Please sign in to comment.