Skip to content

Commit

Permalink
App: Don't bundle app unless we're making a release.
Browse files Browse the repository at this point in the history
  • Loading branch information
e3ndr committed Oct 31, 2024
1 parent 4c4780e commit 2421bf1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:

bundle_windows:
needs: [build_app]
if: startsWith(github.ref, 'refs/tags/1.2-')
runs-on: windows-latest
steps:
- name: 📩 Grab the code
Expand Down Expand Up @@ -64,6 +65,7 @@ jobs:

bundle_macos:
needs: [build_app]
if: startsWith(github.ref, 'refs/tags/1.2-')
runs-on: ubuntu-latest
steps:
- name: 📩 Grab the code
Expand Down Expand Up @@ -99,6 +101,7 @@ jobs:

bundle_linux:
needs: [build_app]
if: startsWith(github.ref, 'refs/tags/1.2-')
runs-on: ubuntu-latest
steps:
- name: 📩 Grab the code
Expand Down

0 comments on commit 2421bf1

Please sign in to comment.