aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/main.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/main.yml')
-rw-r--r--.github/workflows/main.yml13
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index e7103d2..c02fd57 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -3,14 +3,23 @@ name: Workflow
on: [push]
jobs:
- greet:
+ mirrors:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- - uses: yesolutions/mirror-action@master
+
+ - name: Push to GitHub
+ uses: yesolutions/mirror-action@master
with:
REMOTE: 'https://git.popov.link/wecli.git'
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
+
+ - name: Push to Codeberg
+ uses: yesolutions/mirror-action@master
+ with:
+ REMOTE: 'https://codeberg.org/valentineus/wecli.git'
+ GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }}
+ GIT_PASSWORD: ${{ secrets.CODEBERG_PASSWORD }}