更新feishu适配器版本至2.4.0,修改适配器返回值和单测 #7
Workflow file for this run
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(Preview) | |
on: | |
pull_request_target: | |
jobs: | |
preview: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: pull-request-preview-${{ github.event.number }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
fetch-depth: 0 | |
- name: Setup Node Environment | |
uses: ./.github/actions/setup-node | |
- name: Build Doc | |
run: pnpm build | |
- name: Get Deploy Name | |
run: | | |
echo "DEPLOY_NAME=deploy-preview-${{ github.event.number }}" >> $GITHUB_ENV | |
- name: Deploy to Netlify | |
uses: nwtgck/actions-netlify@v2 | |
with: | |
publish-dir: "./docs/build" | |
production-deploy: false | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
deploy-message: "Deploy ${{ env.DEPLOY_NAME }}@${{ github.sha }}" | |
enable-commit-comment: false | |
alias: ${{ env.DEPLOY_NAME }} | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.SITE_ID }} |