Skip to content

Commit

Permalink
Merge branch 'mirroring-action' into 'dev'
Browse files Browse the repository at this point in the history
add mirroring action

See merge request ergo/rosen-bridge/tss-api!12
  • Loading branch information
vorujack committed Sep 1, 2023
2 parents c3ec8cb + 1c9120e commit 632fa57
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/mirroring.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Mirroring

on:
push:
branches:
- master
- dev
tags:
- '*'

jobs:
git-sync:
runs-on: ubuntu-latest
steps:
- name: git-sync
uses: wei/git-sync@v3
with:
source_repo: ${GITHUB_REPOSITORY}
source_branch: ${{github.ref_name}}
destination_repo: 'https://${{ secrets.DESTINATION_USER }}:${{ secrets.DESTINATION_TOKEN }}@${{ secrets.DESTINATION_SERVER }}/ergo/${GITHUB_REPOSITORY}.git'
destination_branch: ${{github.ref_name}}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: RELEASE
name: Release

on:
release:
Expand Down

0 comments on commit 632fa57

Please sign in to comment.