Skip to content

fix: update goreleaser args #9

fix: update goreleaser args

fix: update goreleaser args #9

Workflow file for this run

name: Build docker image
on:
push:
tags:
- "*"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: phibot
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Get version
id: get_version
uses: battila7/get-version-action@v2
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
platforms: linux/amd64,linux/arm64
tags: archwaynetwork/faucet:${{ steps.get_version.outputs.version-without-v }}