Skip to content

feat: bump package and refactor scripts (#3) #8

feat: bump package and refactor scripts (#3)

feat: bump package and refactor scripts (#3) #8

Workflow file for this run

name: Sync Repository
on:
push:
branches:
- 'main'
jobs:
sync:
if: github.repository == 'defi-wonderland/yearn-keeper-scripts-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/yearn-keeper-scripts.git
- name: Sync branch
run: git push public ${{ github.ref_name }}