Skip to content

Commit 44a8753

Browse files
committed
ci(github): Update deploy workflow to set fetch-depth and tag prefix
1 parent c07aa3d commit 44a8753

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/deploy.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
group: ${{ github.workflow }}-${{ github.ref }}
2424
steps:
2525
- uses: actions/checkout@v4
26+
with:
27+
fetch-depth: 0
2628

2729
- uses: actions/setup-go@v5
2830
with:
@@ -43,6 +45,8 @@ jobs:
4345

4446
- name: Prepare tag
4547
id: prepare_tag
48+
env:
49+
GH_PAGES_TAG_PREFIX: "deploy-"
4650
shell: bash
4751
run: |
4852
set -e
@@ -56,18 +60,20 @@ jobs:
5660
echo "No tag found"
5761
exit 1
5862
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}"
6067
6168
- name: "Deploy to GitHub Pages"
6269
if: success() && steps.prepare_tag.outputs.DEPLOY_TAG_NAME != ''
6370
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
6471
with:
65-
github_token: ${{ secrets.GITHUB_TOKEN }}
66-
publish_dir: ${{github.workspace}}/www/dist
72+
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
6773
publish_branch: gh-pages
74+
publish_dir: ${{github.workspace}}/www/dist
6875
commit_message: "Deploy to GitHub Pages"
6976
user_name: "github-actions[bot]"
7077
user_email: "github-actions[bot]@users.noreply.github.com"
7178
tag_name: ${{ steps.prepare_tag.outputs.DEPLOY_TAG_NAME }}
7279
tag_message: "Deployment ${{ github.ref_name }}"
73-
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}

0 commit comments

Comments
 (0)