feat: update cron schedule to run every 4 days and add workflow to mi… #1
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: Mirror to personal repo (Vercel) | |
| on: | |
| push: | |
| branches: ['**'] | |
| delete: | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Push to personal mirror | |
| run: | | |
| git remote add mirror https://x-access-token:${{ secrets.MIRROR_PAT }}@github.com/Gabrielebattimelli/Physlib-Website.git | |
| git push mirror --all | |
| git push mirror --tags |