🐛 表格现在默认居中,无法根据块标菜单的布局设置居左 #102 #64
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 }} |