Keeping track of companies that "care about your data 🥺"
android android-modding

sync to codeberg (hopefully?)

zenfyr.dev fc692f0b af7def4c

verified
+23
+23
.github/workflows/sync.yml
··· 1 + name: sync to codeberg 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + mirror: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - name: Checkout code 13 + uses: actions/checkout@v4 14 + with: 15 + fetch-depth: 0 16 + 17 + - name: push to codeberg 18 + run: | 19 + git remote add codeberg "https://${{ secrets.CODEBERG_PAT }}@codeberg.org/melontini/bootloader-unlock-wall-of-shame.git" 20 + git push --mirror codeberg 21 + env: 22 + GIT_TERMINAL_PROMPT: 0 23 +