Skip to content

Merge pull request #285 from interlynk-io/dependabot/go_modules/sigs.… #35

Merge pull request #285 from interlynk-io/dependabot/go_modules/sigs.…

Merge pull request #285 from interlynk-io/dependabot/go_modules/sigs.… #35

Workflow file for this run

name: Release | Build Binary
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
releaser:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: '>=1.20'
check-latest: true
cache: true
- name: Download syft binary
run: curl -sSfL https://raw.githubusercontent.com/anchore/syft/main/install.sh | sh -s -- -b /usr/local/bin
- name: Run syft
run: syft version
- name: Goreleaser
uses: goreleaser/goreleaser-action@v4
with:
install-only: true
- run: go version
- run: goreleaser -v
- name: Releaser
run: make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}