Skip to content

new amd 64 version

new amd 64 version #12

Workflow file for this run

name: Release tag
on:
push:
branches: [ "wip-aws-infra" ]
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 }}
platforms: linux/amd64
build-args: |
VERSION=${{ github.ref_name }}