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 ed46c11 commit 0e77dc7Copy full SHA for 0e77dc7
.github/workflows/release.main.kts
@@ -111,7 +111,7 @@ workflow(
111
command = """
112
git branch -D "$majorVersionExpr" || true
113
git checkout -b "$majorVersionExpr"
114
- git push origin "$majorVersionExpr"
+ git push origin "$majorVersionExpr" -f
115
""".trimIndent()
116
)
117
.github/workflows/release.yaml
@@ -71,7 +71,7 @@ jobs:
71
run: |-
72
git branch -D "${{ steps.step-8.outputs.majorVersion }}" || true
73
git checkout -b "${{ steps.step-8.outputs.majorVersion }}"
74
- git push origin "${{ steps.step-8.outputs.majorVersion }}"
+ git push origin "${{ steps.step-8.outputs.majorVersion }}" -f
75
- id: 'step-10'
76
name: 'Delete temp branch'
77
run: 'git push origin --delete temp-branch-for-release'
0 commit comments