Merge branch 'next' into feat/use-reflections-hook-migration #155
Workflow file for this run
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: webhook for new staging version | |
on: | |
push: | |
branches: | |
- next | |
paths: | |
- 'extensions/**' | |
- 'libs/**' | |
jobs: | |
publish: | |
name: Update registry apps | |
runs-on: ubuntu-latest | |
environment: Staging | |
steps: | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
architecture: 'x64' | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
run: yarn install | |
# - name: Publish new versions | |
# env: | |
# INFURA_ID: ${{ secrets.INFURA_ID_STAGING }} | |
# ETH_DEPLOY_KEY: ${{ secrets.ETH_DEPLOY_KEY_STAGING }} | |
# INTEGRATION_REGISTRY_ADDRESS: ${{ secrets.INTEGRATION_REGISTRY_ADDRESS_STAGING }} | |
# RINKEBY_JSONRPC: ${{ secrets.RINKEBY_JSONRPC_STAGING }} | |
# run: | | |
# yarn run compile:sc | |
# yarn run deploy:sc | |
- name: Trigger update message | |
run: | | |
curl ${{secrets.WEBHOOK_BOT_STAGING}} |