修改需求列表的样式,使其在无法容纳于同一行时换至下一行 #6
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'" |