Skip to content

feat: add version info #8

feat: add version info

feat: add version info #8

Workflow file for this run

name: publish
on:
push:
tags:
- '*'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Checkout
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: Login to GHCR
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ github.token }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
push: true
build-args: |
NIBIRU_CONNECTOR_VERSION=${{ github.ref_name }}
tags: ghcr.io/nibiruresearchcenter/nibiru-connector:${{ github.ref_name }}