Skip to content

Merge branch 'master' of https://github.com/0xsequence/sidekick into … #23

Merge branch 'master' of https://github.com/0xsequence/sidekick into …

Merge branch 'master' of https://github.com/0xsequence/sidekick into … #23

Workflow file for this run

name: Release tag
on:
push:
tags:
- "v*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log into Github registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: |
ghcr.io/0xsequence/sidekick:${{ github.ref_name }}
ghcr.io/0xsequence/sidekick:latest
platforms: linux/amd64,linux/arm64
build-args: |
VERSION=${{ github.ref_name }}