Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix main command check, add subquery network docker #179

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 53 additions & 0 deletions .github/workflows/node-cosmos-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,56 @@ jobs:
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}


node-build-push-docker-subquery:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 100
token: ${{ secrets.REPO_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: subquerynetwork
password: ${{ secrets.SQ_DOCKERHUB_TOKEN }}

## node
- name: Get updated node version
id: get-node-version
run: |
sh .github/workflows/scripts/nodeVersion.sh

- name: Build and push
if: github.event.inputs.isLatest == 'false'
uses: docker/build-push-action@v2
with:
push: true
platforms: arm64,amd64
file: ./packages/node/Dockerfile
tags: subquerynetwork/subql-node-cosmos:v${{ steps.get-node-version.outputs.NODE_VERSION }},
build-args: RELEASE_VERSION=${{ steps.get-node-version.outputs.NODE_VERSION }}

- name: Build and push
if: github.event.inputs.isLatest == 'true'
uses: docker/build-push-action@v2
with:
push: true
platforms: arm64,amd64
file: ./packages/node/Dockerfile
tags: subquerynetwork/subql-node-cosmos:v${{ steps.get-node-version.outputs.NODE_VERSION }},subquerynetwork/subql-node-cosmos:latest
build-args: RELEASE_VERSION=${{ steps.get-node-version.outputs.NODE_VERSION }}

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}



3 changes: 2 additions & 1 deletion packages/node/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ initLogger(
argv.logLevel as string | undefined,
);

if (argv._[0] === undefined) {
// Check for no subcommand
if (!argv._[0]) {
// Lazy import, to allow logger to be initialised before bootstrap()
// As bootstrap runs services that requires logger
const { bootstrap } = require('./init');
Expand Down
Loading