Skip to content

build(deps-dev): bump unplugin-auto-import in /entry/web (#292) #404

build(deps-dev): bump unplugin-auto-import in /entry/web (#292)

build(deps-dev): bump unplugin-auto-import in /entry/web (#292) #404

Workflow file for this run

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 "[email protected]"
git config --local user.name "mgz0227"