Skip to content

build(deps-dev): bump unplugin-icons from 0.19.3 to 0.20.0 in /entry/… #391

build(deps-dev): bump unplugin-icons from 0.19.3 to 0.20.0 in /entry/…

build(deps-dev): bump unplugin-icons from 0.19.3 to 0.20.0 in /entry/… #391

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 "miaogongzi0227@gmail.com"
git config --local user.name "mgz0227"