We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241ef66 commit 86fd306Copy full SHA for 86fd306
.github/workflows/release.yml
@@ -45,11 +45,17 @@ jobs:
45
ref: main
46
fetch-depth: 0
47
48
+ - name: Setup git branch
49
+ run: |
50
+ git checkout -B main
51
+ git branch --set-upstream-to=origin/main main
52
+
53
- name: Debug branch info
54
run: |
55
echo "Current branch: $(git branch --show-current)"
56
echo "All branches: $(git branch -a)"
57
echo "Git remote: $(git remote -v)"
58
+ echo "Git status: $(git status)"
59
60
- uses: actions/setup-node@v4
61
with:
.releaserc.json
@@ -2,7 +2,6 @@
2
"branches": [
3
{
4
"name": "main",
5
- "channel": "beta",
6
"prerelease": "beta"
7
}
8
],
0 commit comments