Deploy to Hosted services #22
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: "Deploy to Hosted services" | |
on: | |
workflow_dispatch: | |
inputs: | |
projOrg: | |
required: true | |
type: string | |
default: centrifuge | |
# projImage: | |
# required: false | |
# type: string | |
deploymentType: | |
description: stage or primary | |
required: false | |
type: string | |
default: stage | |
# resetProject: | |
# default: true | |
# type: boolean | |
# secrets: | |
# accessToken: | |
# required: true | |
permissions: | |
contents: read | |
issues: write | |
jobs: | |
subql_deploy_workflow: | |
runs-on: ubuntu-latest | |
env: | |
SUBQL_INDEXER_VERSION: v3.4.4 | |
SUBQL_QUERY_VERSION: v2.8.0 | |
SUBQL_ACCESS_TOKEN: ${{ secrets.SUBQL_ACCESS_TOKEN }} | |
SUBQL_PROJ_ORG: ${{ inputs.projOrg }} | |
# SUBQL_PROJ_IMAGE: ${{ inputs.projImage }} | |
SUBQL_DEPLOYMENT_TYPE: ${{ inputs.deploymentType }} | |
steps: | |
- name: Check out repo's default branch | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- name: Setup Yarn | |
run: yarn install --frozen-lockfile | |
- name: Codegen | |
run: yarn codegen | |
- name: SubQL CLI Version | |
run: yarn subql --version | |
- name: Publish SubQL version | |
run: | | |
npx subql publish -o -f . | |
ls -alh | |
echo "CFG_IPFSCID=$(cat .project-cid)" >> $GITHUB_ENV | |
# - name: Delete Project | |
# if: ${{ inputs.resetProject }} | |
# run: | | |
# npx subql project:delete-project \ | |
# --org="$SUBQL_PROJ_ORG" \ | |
# --projectName="$SUBQL_PROJ_NAME" | |
# continue-on-error: true | |
# - name: Create Project | |
# if: ${{ inputs.resetProject }} | |
# run: | | |
# npx subql project:create-project \ | |
# --apiVersion=2 \ | |
# --description="$SUBQL_PROJ_DESCRIPTION" \ | |
# --gitRepo="https://github.com/$GITHUB_REPOSITORY" \ | |
# --org="$SUBQL_PROJ_ORG" \ | |
# --projectName=centrifuge-dictionary | |
- name: Deploy CFG Version | |
run: | | |
npx subql deployment:deploy \ | |
-d \ | |
--org="$SUBQL_PROJ_ORG" \ | |
--endpoint=wss://fullnode.parachain.centrifuge.io \ | |
--projectName=centrifuge-dictionary \ | |
--ipfsCID="$CFG_IPFSCID" \ | |
--type=$SUBQL_DEPLOYMENT_TYPE \ | |
--disableHistorical \ | |
--indexerVersion="$SUBQL_INDEXER_VERSION" \ | |
--queryVersion="$SUBQL_QUERY_VERSION" | |
# deploy: | |
# name: CLI Deploy | |
# runs-on: ubuntu-latest | |
# environment: | |
# name: DEPLOYMENT | |
# env: | |
# SUBQL_ACCESS_TOKEN: ${{ secrets.SUBQL_ACCESS_TOKEN }} | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Setup Node.js environment | |
# uses: actions/setup-node@v2 | |
# with: | |
# node-version: 18 | |
# - run: yarn | |
# working-directory: ./${{github.event.inputs.directory}} | |
# - name: Codegen | |
# working-directory: ./${{github.event.inputs.directory}} | |
# run: yarn codegen | |
# - name: Publish and Deploy | |
# run: | | |
# sh .github/workflows/scripts/publish-deploy.sh -f ${{ github.event.inputs.directory }} -o ${{github.repository}} -r ${{github.workspace}} -p ${{github.event.inputs.projectName}} -y ${{ github.event.inputs.projectYAML }} |