-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# When pushing a tag. this workflow will trigger site deployment and fixed version address comments | ||
|
||
name: Deploy website | ||
on: | ||
push: | ||
tags: | ||
- '1.*' | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
if: (startsWith(github.ref, 'refs/tags/') && (contains(github.ref_name, '-') == false)) || github.event_name == 'workflow_dispatch' | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v4 | ||
|
||
- uses: oven-sh/setup-bun@v2 | ||
|
||
- run: bun install | ||
|
||
- name: build site | ||
run: bun run predeploy | ||
env: | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
|
||
- name: build dist and bundle analyzer report | ||
run: bun run dist | ||
env: | ||
ANALYZER: 1 | ||
NODE_OPTIONS: --max_old_space_size=4096 | ||
|
||
- name: Get version | ||
id: publish-version | ||
run: echo "VERSION=$(echo ${{ github.ref_name }} | sed 's/\./-/g')" >> $GITHUB_OUTPUT | ||
|
||
- name: Deploy to GitHub Pages | ||
uses: peaceiris/actions-gh-pages@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./_site | ||
force_orphan: true | ||
|
||
# Since force_orphan will not trigger Sync to Gitee, we need to force run it here | ||
- name: Sync to Gitee | ||
uses: wearerequired/git-mirror-action@v1 | ||
env: | ||
SSH_PRIVATE_KEY: ${{ secrets.GITEE_SSH_PRIVATE_KEY }} | ||
with: | ||
source-repo: '[email protected]:ant-design/x.git' | ||
destination-repo: '[email protected]:ant-design/antd-x.git' | ||
|
||
- name: Deploy to Surge (with TAG) | ||
run: | | ||
export DEPLOY_DOMAIN=ant-design-x-${{ steps.publish-version.outputs.VERSION }}.surge.sh | ||
cp report.html ./_site | ||
bunx surge --project ./_site --domain $DEPLOY_DOMAIN --token ${{ secrets.SURGE_TOKEN }} | ||
- name: Create Commit Comment | ||
uses: peter-evans/commit-comment@v3 | ||
with: | ||
body: | | ||
- Documentation site for this release: https://ant-design-x-${{ steps.publish-version.outputs.VERSION }}.surge.sh | ||
- Webpack bundle analyzer report page: https://ant-design-x-${{ steps.publish-version.outputs.VERSION }}.surge.sh/report.html |