Skip to content

feat: 🎸 add endpoints to manage multi sig accounts #206

feat: 🎸 add endpoints to manage multi sig accounts

feat: 🎸 add endpoints to manage multi sig accounts #206

Workflow file for this run

name: Publish Docker image to docker hub
on:
push:
tags:
- v*
release:
type: [published]
jobs:
push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
steps:
- name: Check out the repo
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 Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.ASSOCIATION_DOCKER_USERNAME }}
password: ${{ secrets.ASSOCIATION_DOCKER_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
with:
images: ${{ secrets.ASSOCIATION_DOCKER_HUB_REPO }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}