Skip to content

feat(bash): add bash shell hook support with install/uninstall functi… #204

feat(bash): add bash shell hook support with install/uninstall functi…

feat(bash): add bash shell hook support with install/uninstall functi… #204

Workflow file for this run

name: Release
on:
push:
branches:
- main
permissions:
contents: write # to create release commit (google-github-actions/release-please-action)
pull-requests: write # to create release PR (google-github-actions/release-please-action)
issues: write # to create release issue (google-github-actions/release-please-action)
jobs:
goreleaser:
runs-on: ubuntu-latest
environment: CI
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
token: ${{ secrets.GITHUB_TOKEN }}
release-type: go
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- name: Generate
run: |
echo "GH_TAG=$(echo $GITHUB_REF | awk -F / '{print $3}')" >> $GITHUB_ENV
go install github.com/vektra/mockery/v2@v2.42.0
go generate ./...
- name: Test
run: go test -timeout 3m -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
- uses: goreleaser/goreleaser-action@v6
if: ${{ steps.release.outputs.release_created }}
with:
distribution: goreleaser
version: "~> v2"
args: release --clean
env:
VERSION: ${{ steps.release.outputs.tag_name }}
UPTRACE_DSN: ${{ secrets.UPTRACE_DSN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
QUILL_SIGN_P12: ${{ secrets.QUILL_SIGN_P12 }}
QUILL_SIGN_PASSWORD: ${{ secrets.QUILL_SIGN_PASSWORD }}
QUILL_NOTARY_KEY: ${{ secrets.QUILL_NOTARY_KEY }}
QUILL_NOTARY_KEY_ID: ${{ secrets.QUILL_NOTARY_KEY_ID }}
QUILL_NOTARY_ISSUER: ${{ secrets.QUILL_NOTARY_ISSUER }}