File tree 1 file changed +10
-4
lines changed
1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change 23
23
group : ${{ github.workflow }}-${{ github.ref }}
24
24
steps :
25
25
- uses : actions/checkout@v4
26
+ with :
27
+ fetch-depth : 0
26
28
27
29
- uses : actions/setup-go@v5
28
30
with :
43
45
44
46
- name : Prepare tag
45
47
id : prepare_tag
48
+ env :
49
+ GH_PAGES_TAG_PREFIX : " deploy-"
46
50
shell : bash
47
51
run : |
48
52
set -e
@@ -56,18 +60,20 @@ jobs:
56
60
echo "No tag found"
57
61
exit 1
58
62
fi
59
- echo "DEPLOY_TAG_NAME=deploy-${TAG_NAME}" >> "${GITHUB_OUTPUT}"
63
+ _DEPLOY_TAG_NAME="${GH_PAGES_TAG_PREFIX}${TAG_NAME}"
64
+ echo "DEPLOY_TAG_NAME=${_DEPLOY_TAG_NAME}" >> "${GITHUB_OUTPUT}"
65
+ echo
66
+ echo "Prepared tag: ${_DEPLOY_TAG_NAME}"
60
67
61
68
- name : " Deploy to GitHub Pages"
62
69
if : success() && steps.prepare_tag.outputs.DEPLOY_TAG_NAME != ''
63
70
uses : peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
64
71
with :
65
- github_token : ${{ secrets.GITHUB_TOKEN }}
66
- publish_dir : ${{github.workspace}}/www/dist
72
+ deploy_key : ${{ secrets.ACTIONS_DEPLOY_KEY }}
67
73
publish_branch : gh-pages
74
+ publish_dir : ${{github.workspace}}/www/dist
68
75
commit_message : " Deploy to GitHub Pages"
69
76
user_name : " github-actions[bot]"
70
77
user_email : " github-actions[bot]@users.noreply.github.com"
71
78
tag_name : ${{ steps.prepare_tag.outputs.DEPLOY_TAG_NAME }}
72
79
tag_message : " Deployment ${{ github.ref_name }}"
73
- deploy_key : ${{ secrets.ACTIONS_DEPLOY_KEY }}
You can’t perform that action at this time.
0 commit comments