Skip to content

Commit

Permalink
chore(core): fix docs release (#22430)
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacplmann authored Mar 21, 2024
1 parent 85ba3f9 commit a059f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ jobs:
run: |
# The GITHUB_REF_NAME is a full version (i.e. 17.3.2). The branchName will only use the major version number.
# We will publish docs to the website branch based on the current tag (i.e. website-17)
branchName=website-${$GITHUB_REF_NAME%.*.*}
branchName=website-${GITHUB_REF_NAME%.*.*}
# We force recreate the branch in order to always be up to date and avoid merge conflicts within the automated workflow
git branch -f $branchName
git push -f origin $branchName

0 comments on commit a059f1a

Please sign in to comment.