Create main.css #17
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 Codeberg | |
| on: | |
| push: | |
| branches: [main] | |
| delete: | |
| jobs: | |
| mirror_to_codeberg: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Mirror to Codeberg | |
| uses: wearerequired/git-mirror-action@v1 | |
| with: | |
| source-repo: "https://github.com/${{ github.repository }}.git" | |
| # Hier bauen wir Username und Token direkt in die URL ein: | |
| destination-repo: "https://JumpStone:${{ secrets.CODEBERG_TOKEN }}@codeberg.org/JumpStone-Gaming/website.git" |