We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3a6747 commit b3c7617Copy full SHA for b3c7617
.github/workflows/publish-docs.yml
@@ -77,11 +77,11 @@ jobs:
77
if: ${{ steps.prepare_tag.outputs.is_latest}}
78
run: |
79
echo "tag is latest. need to update latest-symlink in gh-pages branch"
80
- ln -f -s doc-${{ steps.prepare_tag.outputs.deploy_tag_name }} latest
+ ln -f -s ${{ steps.prepare_tag.outputs.deploy_tag_name }} latest
81
git config user.name Excodibur
82
git add latest
83
- git commit --amend -m "updated symlink to doc-${{ steps.prepare_tag.outputs.deploy_tag_name }}"
84
- git push gh-pages origin
+ git commit --amend -m "updated symlink to ${{ steps.prepare_tag.outputs.deploy_tag_name }}"
+ git push gh-pages
85
86
87
0 commit comments