feat: add PriceOracle.abi.json (#43) #30
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
# when `main` is updated, sync to `deploy/fleek` | |
# due to current fleek build requirements | |
# it is necessary to keep the branches separate | |
name: Sync Main to Deploy/Fleek | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main branch | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
fetch-depth: 0 | |
- name: Checkout deploy/fleek branch | |
run: git checkout -B deploy/fleek origin/deploy/fleek | |
- name: Set Git user | |
run: | | |
git config user.name "xeon-actions" | |
git config user.email "xeon-protocol-actions@github.com" | |
- name: Merge main into deploy/fleek | |
run: git merge origin/main --no-ff | |
- name: Push changes | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: git push origin deploy/fleek |