Skip to content

Commit

Permalink
chore: sync gh-page
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieJ committed Nov 22, 2024
1 parent 602ad6f commit 907e417
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/site-deploy.yml
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

0 comments on commit 907e417

Please sign in to comment.