Skip to content

chore: testnet deployments (#5) #16

chore: testnet deployments (#5)

chore: testnet deployments (#5) #16

Workflow file for this run

name: Sync Repository
on:
push:
branches:
- "main"
- "dev"
jobs:
sync:
if: github.repository == 'defi-wonderland/keep3r-network-v2-private'
runs-on: ubuntu-latest
steps:
- name: Check out github repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install SSH Client
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SYNC_SSH_PRIVATE_KEY }}
- name: Add Remote
run: git remote add public [email protected]:defi-wonderland/keep3r-network-v2.git
- name: Sync branch
run: git push public ${{ github.ref_name }}