This repository has been archived by the owner on Dec 10, 2023. It is now read-only.
fix(anime.yml): fix git stuff #98
Workflow file for this run
This file contains 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
# This is a basic workflow that is manually triggered | |
name: Mirror repo | |
on: [push] | |
jobs: | |
mirror: | |
runs-on: ubuntu-latest | |
steps: | |
- name: mirror in gitlab | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: yesolutions/mirror-action@master | |
with: | |
REMOTE: 'https://gitlab.com/Anas-Elgarhy/Anas-Elgarhy.git' | |
GIT_USERNAME: Anas-Elgarhy | |
GIT_PASSWORD: ${{ secrets.GITLAP_TOKEN }} | |
- name: mirror in bitbucket | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: yesolutions/mirror-action@master | |
with: | |
REMOTE: 'https://[email protected]/anas_elgarhy/anas-elgarhy.git' | |
REMOTE_NAME: bitbucket | |
GIT_USERNAME: anas_elgarhy | |
GIT_PASSWORD: ${{ secrets.BITBUCKET_TOKEN }} | |
- name: mirror in codeberg | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: yesolutions/mirror-action@master | |
with: | |
REMOTE: 'https://codeberg.org/anas-elgarhy/anas-elgarhy.git' | |
REMOTE_NAME: codeberg | |
GIT_USERNAME: anas-elgarhy | |
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }} |