Skip to content

Commit 2d6efc2

Browse files
committed
chore(ci): target experimental branch
1 parent 61b1074 commit 2d6efc2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: CI
33
on:
44
push:
55
branches:
6-
- main
6+
- experimental
77
pull_request:
88
branches:
9-
- main
9+
- experimental
1010

1111
permissions:
1212
contents: read
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Upload documentation
4646
uses: actions/upload-pages-artifact@v4
47-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
47+
if: github.ref == 'refs/heads/experimental' && github.event_name == 'push'
4848
with:
4949
path: ./dist
5050

@@ -69,7 +69,7 @@ jobs:
6969
path: "*.tgz"
7070

7171
- name: Publish to npm
72-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
72+
if: github.ref == 'refs/heads/experimental' && github.event_name == 'push'
7373
env:
7474
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
7575
run: npm publish --access public ./*.tgz --tag experimental
@@ -80,7 +80,7 @@ jobs:
8080
environment:
8181
name: github-pages
8282
url: ${{ steps.deployment.outputs.page_url }}
83-
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
83+
if: github.ref == 'refs/heads/experimental' && github.event_name == 'push'
8484
steps:
8585
- name: Deploy to GitHub Pages
8686
id: deployment

0 commit comments

Comments
 (0)