chore(deps-dev): bump postcss from 8.4.47 to 8.5.12 #432
This file contains hidden or 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: 更新历史版本列表 | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| workflow_dispatch: | |
| jobs: | |
| deploy: | |
| if: contains(github.event.head_commit.message, 'versions') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: 配置火山云 TOS 凭证 | |
| run: | | |
| aws configure set aws_access_key_id ${{ secrets.ACCESSKEY }} | |
| aws configure set aws_secret_access_key ${{ secrets.SECRETACCESSKEY }} | |
| aws configure set default.region cn-beijing | |
| - name: 上传文件到火山云 TOS (测试环境) | |
| if: contains(github.event.head_commit.message, 'test:versions') | |
| run: | | |
| aws s3 cp ./versions.json s3://cocoscreator-docs-test/gitbook/creator/versions/versions.json \ | |
| --endpoint-url https://tos-s3-cn-beijing.volces.com \ | |
| --addressing-style virtual | |
| - name: 上传文件到火山云 TOS(正式环境) | |
| if: contains(github.event.head_commit.message, 'publish:versions') | |
| run: | | |
| aws s3 cp ./versions.json s3://cocoscreator-docs-pro/gitbook/creator/versions/versions.json \ | |
| --endpoint-url https://tos-s3-cn-beijing.volces.com \ | |
| --addressing-style virtual |