From d303c9a7a831695535b3b08174cdea6921de68e1 Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Sun, 14 May 2023 00:34:26 +0200 Subject: [PATCH] feat(actions): Add Gitea mirror push --- .github/workflows/mirror-push.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/mirror-push.yaml diff --git a/.github/workflows/mirror-push.yaml b/.github/workflows/mirror-push.yaml new file mode 100644 index 0000000..a3a0ee7 --- /dev/null +++ b/.github/workflows/mirror-push.yaml @@ -0,0 +1,19 @@ +name: Mirror Push + +on: + push: + branches: [master] + +jobs: + push: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: mirror + uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.froth.zone/sam/Xdg.Net.git' + GIT_USERNAME: oauth2 + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} \ No newline at end of file