Skip to content
This repository has been archived by the owner on Mar 16, 2024. It is now read-only.

Configure right platform #2

Configure right platform

Configure right platform #2

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
run: |-
IMG="ghcr.io/${{ github.repository }}:${{ github.ref_name }}" IMG_PLATFORM="linux/amd64" make docker-push-w-buildx