修改交互键的图案颜色 #35
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 |