Skip to content

feat: add version command (#19) #12

feat: add version command (#19)

feat: add version command (#19) #12

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
check-latest: true
- run: go version
- name: Install Syft
uses: anchore/sbom-action/download-syft@v0
-
name: Release
uses: goreleaser/[email protected]
with:
version: ${{ env.GITHUB_REF_NAME }}
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}