We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddcda07 commit 5f8e4d1Copy full SHA for 5f8e4d1
.github/workflows/ci.yml
@@ -21,15 +21,15 @@ jobs:
21
- run: npm run build-storybook --quiet
22
23
- uses: actions/upload-artifact@v4
24
- # Only publish examples using the master branch, and only from one build
25
- if: github.ref == 'refs/heads/master' && matrix.node-version == '16.x'
+ # Only publish examples using the main branch, and only from one build
+ if: github.ref == 'refs/heads/main' && matrix.node-version == '16.x'
26
with:
27
name: examples
28
path: examples/*
29
if-no-files-found: error
30
31
publish:
32
- if: github.ref == 'refs/heads/master'
+ if: github.ref == 'refs/heads/main'
33
name: Deploy storybook examples
34
runs-on: ubuntu-latest
35
needs: build
0 commit comments