This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
Merge pull request #197 from kodadot/main #67
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: subsquid | |
on: | |
push: | |
branches: | |
- "release-**" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: install @subsquid/cli | |
run: npm install --location=global @subsquid/cli | |
- name: auth subsquid | |
run: | | |
BRANCH=${{ github.ref_name }} | |
PREFIX="release-" | |
VERSION=${BRANCH/#$PREFIX} | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
sqd auth -k ${{ secrets.DEPLOYMENT_KEY }} | |
- name: deploy subsquid | |
id: deploy | |
run: sqd deploy -u -m ${{ env.VERSION }}.yaml . |