Release #26
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: | |
tags: ["v*.*.**"] | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: "Target tag to release" | |
required: true | |
type: string | |
env: | |
PGO_FILE: "default.pgo" | |
COSIGN_KEY_PREFIX: release-${{ github.event.repository.name }}_${{ github.ref_name }} | |
permissions: | |
contents: write | |
packages: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/goreleaser/goreleaser-cross:latest | |
steps: | |
# Downloading PGO file | |
- uses: actions/download-artifact@v4 | |
id: artifact | |
with: | |
name: pgo | |
continue-on-error: true | |
- uses: actions/checkout@v4 | |
if: steps.artifact.outcome != 'success' | |
with: | |
ref: pgo | |
- run: cp ${{ env.PGO_FILE }} /tmp | |
if: steps.artifact.outcome != 'success' | |
# Releasing | |
- uses: actions/checkout@v4 | |
with: | |
ref: "${{ inputs.tag || github.ref_name }}" | |
- run: cp /tmp/${{ env.PGO_FILE }} . | |
if: steps.artifact.outcome != 'success' | |
- uses: teler-sh/actions/setup-go@v1 | |
- name: Build PGO file | |
run: '[ -f "${{ env.PGO_FILE }}" ] || make pgo' | |
- run: git config --global --add safe.directory "$(pwd)" | |
- uses: anchore/sbom-action/download-syft@v0 | |
- uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- uses: teler-sh/actions/cosign/generate@v1 | |
with: | |
password: ${{ secrets.COSIGN_PASSWORD }} | |
key-prefix: ${{ env.COSIGN_KEY_PREFIX }} | |
- run: goreleaser release --clean --skip validate | |
env: | |
COSIGN_PASSWORD: ${{ secrets.COSIGN_PASSWORD }} | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |