Skip to content

Commit

Permalink
Create builds for wip branches
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismaltby committed Jun 28, 2024
1 parent 53f08b9 commit 4db3174
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- main
- feat/*
- beta-*
- wip-*

workflow_dispatch:

Expand All @@ -32,7 +33,7 @@ jobs:
deploy:
needs: test
runs-on: ${{ matrix.os }}
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/beta-')
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/beta-') || startsWith(github.ref, 'refs/heads/wip-')

strategy:
matrix:
Expand Down

0 comments on commit 4db3174

Please sign in to comment.