Skip to content

feat: 适配最新的测试方法和结果 #11

feat: 适配最新的测试方法和结果

feat: 适配最新的测试方法和结果 #11

Workflow file for this run

name: Site Deploy
on:
push:
branches:
- "main"
paths:
- "websites/**"
permissions:
contents: read
deployments: write
concurrency:
group: website-deploy-${{ github.ref }}
cancel-in-progress: false
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get results
run: |
git fetch origin
git checkout origin/results results.json
mv results.json websites/results.json
- 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: "./websites"
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 }}