core: 删减了一些不太好看的背景预设点组,添加了一个自制的预设点组 #1159
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: "同步仓库至 GitCode" | |
| on: | |
| push: | |
| branches-ignore: | |
| - i10n_* | |
| jobs: | |
| pre-release: | |
| name: 同步仓库至 GitCode | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| name: 克隆仓库 | |
| with: | |
| lfs: true | |
| - uses: kielabokkie/ssh-key-and-known-hosts-action@v1 | |
| with: | |
| ssh-private-key: ${{ secrets.AMLL_PUSH_KEY }} | |
| ssh-host: gitcode.net | |
| - name: 强制推送至 GitCode | |
| run: | | |
| git config lfs.allowincompletepush true | |
| git config lfs.https://gitcode.net/sn/applemusic-like-lyrics.git/info/lfs.locksverify true | |
| git fetch --all | |
| git pull --all --unshallow | |
| git remote add gitcode git@gitcode.net:sn/applemusic-like-lyrics.git | |
| git push --force -u gitcode --all | |
| git push --force -u gitcode --tags |