attempt with aligned name #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
# version tags are protected in this repository | |
tags: | |
- "v*" | |
permissions: | |
# required for OIDC token used as the signing identity | |
id-token: write | |
# required to publish the release | |
contents: write | |
jobs: | |
goreleaser: | |
# deploy with the correct environment to allow DockerHub access | |
environment: 'Publish' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Install Cosign | |
uses: sigstore/cosign-installer@v3 | |
with: | |
cosign-release: 'v2.4.0' | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: '${{ vars.DOCKERHUB_USER }}' | |
password: '${{ secrets.DOCKERHUB_TOKEN }}' | |
- name: Release | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: v2.3.2 | |
args: release --clean --verbose | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
KO_DOCKER_REPO: "chinmina" # the DockerHub chinmina repository |