Publish Release #2
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: Publish Release | |
on: | |
workflow_call: | |
inputs: | |
tag: | |
required: true | |
description: 'The tag to upload release artifacts to.' | |
type: string | |
workflow_dispatch: | |
inputs: | |
tag: | |
description: 'The tag to upload release artifacts to.' | |
required: true | |
type: string | |
jobs: | |
release-sdk-test-harness: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Needed for goreleaser to inspect tags. | |
- uses: ./.github/actions/ci | |
with: | |
run_linter: 'false' | |
- uses: ./.github/actions/publish | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
tag: ${{ inputs.tag }} |