Skip to content

Merge pull request #279 from interlynk-io/riteshnoronha-patch-3 #34

Merge pull request #279 from interlynk-io/riteshnoronha-patch-3

Merge pull request #279 from interlynk-io/riteshnoronha-patch-3 #34

Workflow file for this run

name: releaser
on:
push:
tags:
- 'v*'
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 }}