💄 优化块右上角所属数据库的样式:添加padding #71
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: CI | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- name : jq theme.json | |
run: | | |
cat theme.json | jq .version | |
- name: package | |
run: | | |
find . -not -path '*/\.*' -type f -print | zip package.zip -@ | |
- uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
artifactErrorsFailBuild: true | |
artifacts: "package.zip" | |
token: ${{ secrets.GITHUB_TOKEN }} |