Skip to content

Commit

Permalink
Setup manual release pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
another-rex committed Nov 29, 2023
1 parent 8c5634d commit 30eb42c
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 76 deletions.
79 changes: 3 additions & 76 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,96 +1,23 @@
name: Release new version

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
push:
tags:
- "*" # triggers only if push new tag version, like `v0.8.4`

permissions:
contents: read # to fetch code (actions/checkout)
# Require writing security events to upload SARIF file to security tab
security-events: write

jobs:
osv-scan:
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
./
lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
ref: ${{ inputs.commit }}
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: .go-version
check-latest: true
- name: Run lint action
uses: ./.github/workflows/lint-action
tests:
name: Run unit tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
ref: ${{ inputs.commit }}
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: .go-version
check-latest: true
- name: Run test action
uses: ./.github/workflows/test-action
tag-release:
runs-on: ubuntu-latest
needs:
- lint
- tests
- osv-scan
permissions:
contents: write # to write a tag
steps:
- name: Create tag
uses: actions/github-script@v6
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/${{ inputs.version }}',
sha: '${{ inputs.commit }}'
})
goreleaser:
outputs:
hashes: ${{ steps.hash.outputs.hashes }}
permissions:
contents: write # for goreleaser/goreleaser-action to create a GitHub release
packages: write # for goreleaser/goreleaser-action to publish docker images
runs-on: ubuntu-latest
needs:
- tag-release
env:
# Required for buildx on docker 19.x
DOCKER_CLI_EXPERIMENTAL: "enabled"
Expand Down
80 changes: 80 additions & 0 deletions .github/workflows/prerelease-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
name: Release new version

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

permissions:
contents: read # to fetch code (actions/checkout)
# Require writing security events to upload SARIF file to security tab
security-events: write

jobs:
osv-scan:
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
./
lint:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
ref: ${{ inputs.commit }}
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: .go-version
check-latest: true
- name: Run lint action
uses: ./.github/workflows/lint-action
tests:
name: Run unit tests
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
ref: ${{ inputs.commit }}
- name: Set up Go
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version-file: .go-version
check-latest: true
- name: Run test action
uses: ./.github/workflows/test-action
release-helper:
runs-on: ubuntu-latest
needs:
- lint
- tests
- osv-scan
steps:
- name: Print Scripts
env:
OUTPUT: |-
git fetch upstream
git tag ${{ inputs.version }} ${{ inputs.commit }}
git push upstream ${{ inputs.version }}
run: |
echo $OUTPUT

0 comments on commit 30eb42c

Please sign in to comment.