Skip to content

Commit cee1c85

Browse files
authored
lingering master (#593)
prevented S3 pushes of new builds
1 parent 353f8ba commit cee1c85

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
with:
115115
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
116116
aws-region: ${{ secrets.AWS_REGION }}
117-
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
117+
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
118118
run: make sync-latest-to-s3
119119
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
120120
run: make sync-to-s3
@@ -147,7 +147,7 @@ jobs:
147147
with:
148148
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
149149
aws-region: ${{ secrets.AWS_REGION }}
150-
- if: github.event_name == 'push' && github.ref == 'refs/heads/master'
150+
- if: github.event_name == 'push' && github.ref == 'refs/heads/main'
151151
run: make sync-latest-docs-to-s3
152152
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
153153
uses: aws-actions/configure-aws-credentials@v1
@@ -158,7 +158,7 @@ jobs:
158158
run: make promote-docs-in-s3
159159

160160
dispatch:
161-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
161+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
162162
needs: distributions
163163
runs-on: ubuntu-latest
164164
steps:

0 commit comments

Comments
 (0)