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

Merge pull request #2 from StrongMonkey/fix-acorn-protocol #3

Merge pull request #2 from StrongMonkey/fix-acorn-protocol

Merge pull request #2 from StrongMonkey/fix-acorn-protocol #3

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