Skip to content

Commit

Permalink
github workflow: Update buildcheck.yaml
Browse files Browse the repository at this point in the history
Yaml was assuming "master" as name of working branch. In this project we have the newer "main". So correct the yaml

Signed-off-by: Stephen Lawrence <[email protected]>
  • Loading branch information
slawr authored Mar 15, 2024
1 parent fa21f7a commit f9c9fc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/buildcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Deploy docs
# Only deploy docs if this was a push to master
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/mainr' }}
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
Expand Down

0 comments on commit f9c9fc6

Please sign in to comment.