修复忽略大小写导致的问题 #18
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: Deploy external PR preview (https://b.dsp-calc.pro) | |
on: [ pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: branch-preview | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm install | |
- run: npm run build | |
- name: Create dist.zip | |
run: | | |
cd dist | |
zip -q -r ../dist.zip * | |
- name: Deploy branch site (https://b.dsp-calc.pro) | |
run: "curl --fail --no-progress-meter --location 'https://publish.b.dsp-calc.pro/external/pr?branch=${{ github.ref_name }}' --form 'file=@dist.zip'" |