Skip to content

Commit 124bd83

Browse files
committed
Fix branch name in pipeline
1 parent 92ffd7a commit 124bd83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
working-directory: ./website
3636

3737
# Use `gh` tool to infer more information about the pull request.
38-
# The underlying issue here is pushes to a non-mergeable/main target branch
38+
# The underlying issue here is pushes to a non-mergeable/master target branch
3939
# don't have the PR number easily available.
4040
# https://stackoverflow.com/a/70102700
4141
- name: Get pull request info
@@ -45,7 +45,7 @@ jobs:
4545
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4646

4747
- name: Deploy docs (production)
48-
if: github.ref == 'refs/heads/main'
48+
if: github.ref == 'refs/heads/master'
4949
run: yarn deploy:prod
5050
working-directory: ./website
5151
env:

0 commit comments

Comments
 (0)