Pre-release check #10
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: Pre-release check | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "The version tag to release, (e.g. v1.2.3)" | |
required: true | |
type: string | |
commit: | |
description: "The commit hash to release" | |
required: true | |
type: string | |
# Restrict jobs in this workflow to have no permissions by default; permissions | |
# should be granted per job as needed using a dedicated `permissions` block | |
permissions: {} | |
jobs: | |
osv-scan: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
security-events: write # for uploading SARIF files | |
uses: ./.github/workflows/osv-scanner-reusable.yml | |
with: | |
# Only scan the top level go.mod file without recursively scanning directories since | |
# this is pipeline is about releasing the go module and binary | |
scan-args: |- | |
--skip-git | |
./ | |
format: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
name: prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
persist-credentials: false | |
- name: Run lint action | |
uses: ./.github/workflows/format-action | |
lint: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
name: golangci-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
persist-credentials: false | |
ref: ${{ inputs.commit }} | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version-file: .go-version | |
check-latest: true | |
- name: Run lint action | |
uses: ./.github/workflows/lint-action | |
prepare_test_image_fixtures: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
persist-credentials: false | |
- run: scripts/build_test_images.sh | |
- uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: image-fixtures-${{ github.run_number }}-${{ github.run_attempt }} | |
path: internal/image/fixtures/*.tar | |
retention-days: 1 | |
tests: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
name: Run unit tests | |
needs: | |
- prepare_test_image_fixtures | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
with: | |
persist-credentials: false | |
ref: ${{ inputs.commit }} | |
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 | |
with: | |
name: image-fixtures-${{ github.run_number }}-${{ github.run_attempt }} | |
path: internal/image/fixtures/ | |
- name: Set up Go | |
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1 | |
with: | |
go-version-file: .go-version | |
check-latest: true | |
- name: Run test action | |
uses: ./.github/workflows/test-action | |
with: | |
codecov_token: ${{ secrets.CODECOV_TOKEN }} | |
release-helper: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
runs-on: ubuntu-latest | |
needs: | |
- format | |
- lint | |
- tests | |
- osv-scan | |
steps: | |
- name: Print Scripts | |
env: | |
OUTPUT: | | |
git fetch upstream && | |
git tag ${{ inputs.version }} ${{ inputs.commit }} && | |
git push upstream ${{ inputs.version }} | |
shell: bash | |
run: | | |
echo $OUTPUT |