fix(auth): resolve signup duplicate key & session conflicts #6
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 Fork | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Org Repo | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Push to Personal Fork | |
| run: | | |
| git remote add personal https://x-access-token:${{ secrets.PERSONAL_ACCESS_TOKEN }}@github.com/Wutche/payrail.git | |
| git push personal main --force |