Release 1.36.1 (skip tests: false, use existing tag: false) #8
This file contains hidden or 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: 'New Release' | |
run-name: 'Release ${{ inputs.version_number }} (skip tests: ${{ inputs.skip_tests }}, use existing tag: ${{ inputs.use_existing_tag}})' | |
# Used for creating a new release. This workflow will run qa acceptance tests, create a new tag, and generate the release with GoReleaser. | |
on: | |
workflow_dispatch: | |
inputs: | |
version_number: | |
description: 'Version number (e.g., v1.0.0, v1.0.0-pre, v1.0.0-pre1)' | |
required: true | |
skip_tests: | |
description: 'Set value to `true` to skip QA acceptance tests, default is `false`' | |
default: 'false' | |
use_existing_tag: | |
description: 'Set value to `true` to use an existing tag for the release process, default is `false`' | |
default: 'false' | |
jobs: | |
compliance: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.APIX_BOT_PAT }} | |
- name: Generate SBOM | |
run: make gen-purls generate-sbom |