将聊天界面icon移至界面设计文件夹,移除仓库内的psd工程文件 #27
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: cut | |
| on: [ push ] | |
| jobs: | |
| cut: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Cut | |
| run: | | |
| shopt -s globstar | |
| java Cutter.java **/*.9.png | |
| - name: Deploy | |
| uses: stefanzweifel/git-auto-commit-action@v5 | |
| with: | |
| commit_message: 'Update 9-patch' | |
| branch: '9-patch' | |
| push_options: '--force' | |
| skip_fetch: true | |
| skip_checkout: true |