Skip to content

Commit 6e26171

Browse files
committed
Fix github actions conditional for wrong branch name
Signed-off-by: Elijah Zupancic <[email protected]>
1 parent f485429 commit 6e26171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
build_and_deploy:
2929
runs-on: ubuntu-latest
3030

31-
if: github.ref == 'refs/heads/main'
31+
if: github.ref == 'refs/heads/master'
3232
steps:
3333
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3434
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)