feat: 验证结果展示表格化 (#36) #47
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
name: Site Deploy | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "src/**" | |
permissions: | |
contents: read | |
deployments: write | |
statuses: write | |
concurrency: | |
group: website-deploy-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node Environment | |
uses: ./.github/actions/setup-node | |
- name: Get results | |
run: | | |
git fetch origin | |
git checkout origin/results results.json adapters.json bots.json drivers.json plugins.json | |
mv -t public results.json adapters.json bots.json drivers.json plugins.json | |
- name: Build Website | |
run: pnpm build | |
- name: Get Branch Name | |
run: echo "BRANCH_NAME=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_ENV | |
- name: Deploy to Netlify | |
uses: nwtgck/actions-netlify@v2 | |
with: | |
publish-dir: "./dist" | |
production-deploy: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Deploy ${{ env.BRANCH_NAME }}@${{ github.sha }}" | |
enable-commit-comment: false | |
alias: ${{ env.BRANCH_NAME }} | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} |