chore: test #96
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* | |
permissions: | |
contents: write | |
id-token: write | |
packages: write | |
attestations: write | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: "stable" | |
- uses: goreleaser/goreleaser-action@v6 | |
id: goreleaser | |
with: | |
version: latest | |
args: release --clean --config .goreleaser.4.yml | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Notify success | |
uses: rjstone/discord-webhook-notify@v1 | |
if: success() | |
with: | |
severity: info | |
details: New nightly build available! | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
- name: Notify failure | |
uses: rjstone/discord-webhook-notify@v1 | |
if: failure() | |
with: | |
severity: error | |
details: Nightly failed | |
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }} | |
# parse artifacts to the format required for image attestation | |
# - run: | | |
# echo "digest=$(echo "$ARTIFACTS" | jq -r '.[]|select(.type=="Docker Manifest")|select(.name|test(":v"))|.extra.Digest')" >> "$GITHUB_OUTPUT" | |
# echo "name=$(echo "$ARTIFACTS" | jq -r '.[]|select(.type=="Docker Manifest")|select(.name|test(":v"))|.name|split(":")[0]')" >> "$GITHUB_OUTPUT" | |
# id: image_metadata | |
# env: | |
# ARTIFACTS: ${{steps.goreleaser.outputs.artifacts}} | |
# # attest archives | |
- uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: "dist/*.tar.gz" | |
# attest image | |
# - uses: actions/attest-build-provenance@v1 | |
# with: | |
# subject-digest: ${{steps.image_metadata.outputs.digest}} | |
# subject-name: ${{steps.image_metadata.outputs.name}} | |
# push-to-registry: true | |
notify: | |
name: Discord Notification | |
runs-on: ubuntu-latest | |
needs: | |
- goreleaser | |
if: ${{ always() }} | |
steps: | |
- name: Notify | |
uses: nobrayner/discord-webhook@v1 | |
with: | |
github-token: ${{ secrets.github_token }} | |
title: "nightly" | |
description: "build finished with status {{STATUS}}" | |
discord-webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
username: GoReleaser | |
avatar-url: https://avatars.githubusercontent.com/u/24697112?v=4 | |
include-details: false |