Merge pull request #103 from perpetual-protocol/feature/add-funding-json #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
public-to-internal: | |
if: ${{ github.repository == 'perpetual-protocol/perp-curie-contract' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.PERP_LUSHAN_DEPLOY_PRIVATE_KEY }} | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- run: | | |
git config --global user.name "dev" | |
git config --global user.email "[email protected]" | |
git remote add internal "[email protected]:perpetual-protocol/perp-lushan.git" | |
git push --set-upstream internal main |