Merge pull request #263 from DJTusheniyTapochek/patch-1 #128
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: sync to codeberg | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| mirror: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: push to codeberg | |
| run: | | |
| git remote add codeberg "https://${{ secrets.CODEBERG_PAT }}@codeberg.org/zenfyr/bootloader-unlock-wall-of-shame.git" | |
| git push --mirror codeberg | |
| env: | |
| GIT_TERMINAL_PROMPT: 0 |