Add a new optional cache-token input to both published actions. - Default cache key token is now action_repository + release_tag. - Cache key uses this token plus runner architecture. - prepare-release workflow passes github.sha as a fixed token. This prevents cross-repository cache collisions when consumers pull vociferate binaries produced by this repository.
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
name: Prepare Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: Optional semantic version override, with or without leading v. When omitted, the recommended version is used.
|
|
required: false
|
|
workflow_call:
|
|
inputs:
|
|
version:
|
|
description: Optional semantic version override, with or without leading v. When omitted, the recommended version is used.
|
|
required: false
|
|
default: ''
|
|
type: string
|
|
|
|
jobs:
|
|
prepare:
|
|
runs-on: ubuntu-latest
|
|
container: docker.io/catthehacker/ubuntu:act-latest
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: '1.26.1'
|
|
check-latest: true
|
|
cache: true
|
|
cache-dependency-path: go.sum
|
|
|
|
- name: Run tests
|
|
run: go test ./...
|
|
|
|
- name: Prepare and tag release
|
|
id: prepare
|
|
uses: ./prepare
|
|
with:
|
|
version: ${{ inputs.version }}
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
cache-token: ${{ github.sha }}
|
|
|
|
- name: Summarize prepared release
|
|
run: |
|
|
set -euo pipefail
|
|
tag="${{ steps.prepare.outputs.version }}"
|
|
{
|
|
echo "## Release Prepared"
|
|
echo
|