We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d029fa commit 5145974Copy full SHA for 5145974
.github/workflows/ci.yml
@@ -3,10 +3,10 @@ name: CI
3
on:
4
push:
5
branches:
6
- - master
+ - v10
7
pull_request:
8
9
10
permissions:
11
contents: read
12
env:
.github/workflows/release.yml
@@ -50,7 +50,7 @@ jobs:
50
- name: Commit changelog
51
uses: stefanzweifel/git-auto-commit-action@v5
52
with:
53
- branch: master
+ branch: v10
54
file_pattern: '*.md'
55
commit_message: 'chore: sync changelog'
56
scripts/release.sh
@@ -23,7 +23,7 @@ for PKG in packages/* ; do
23
continue
24
fi
25
pushd $PKG
26
- TAG="latest"
+ TAG="stable"
27
echo "⚡ Publishing $PKG with tag $TAG"
28
pnpm publish --access public --no-git-checks --tag $TAG
29
popd > /dev/null
0 commit comments