fix: indexes to entities (#43) #54
This file contains hidden or 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: Build and push Docker images | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
# TODO: remove before merge to main | |
- "base/multichain" | |
tags: | |
- 'v*' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build-docker-images: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
strategy: | |
fail-fast: false | |
matrix: | |
node-js-image-version: [20] | |
subql-node-image-version: [v5.6.0] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Set image label for the main branch | |
if: ${{ github.ref_type == 'branch' && github.ref_name == 'main' }} | |
run: | | |
echo "IMAGE_LABEL=latest" >> "$GITHUB_ENV" | |
- name: Set image label for a tag or other branches | |
if: ${{ github.ref_type == 'tag' || (github.ref_type == 'branch' && github.ref_name != 'main') }} | |
run: | | |
# Sanitize branch name by replacing invalid characters with hyphens | |
SANITIZED_REF_NAME=$(echo -n "${{ github.ref_name }}" | tr -c '[:alnum:].-' '-' | tr '[:upper:]' '[:lower:]') | |
echo "IMAGE_LABEL=$SANITIZED_REF_NAME" >> "$GITHUB_ENV" | |
- name: Set full name of the Docker image | |
run: | | |
echo "FULL_IMAGE_NAME=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_LABEL }}-node-js-${{ matrix.node-js-image-version }}-subql-node-${{ matrix.subql-node-image-version }}" >> "$GITHUB_ENV" | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v6 | |
with: | |
file: docker/subql-node-Dockerfile | |
push: true | |
load: true | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
NODE_JS_IMAGE_VERSION=${{ matrix.node-js-image-version }}-alpine | |
SUBQL_NODE_IMAGE_VERSION=${{ matrix.subql-node-image-version }} | |
tags: ${{ env.FULL_IMAGE_NAME }} |