1.完善用户隐私协议页面文字前加上黑色圆点。 (#278) #392
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: Backup Main Branch | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
backup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main branch | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Archive main branch as tar.gz | |
run: | | |
tar -czf main_backup_$(date +"%Y%m%d").tar.gz * | |
working-directory: ${{ github.workspace }} | |
- name: Upload backup to Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: backup | |
path: ${{ github.workspace }}/*.tar.gz | |
- name: Set up Git | |
run: | | |
git config --local user.email "miaogongzi0227@gmail.com" | |
git config --local user.name "mgz0227" |