Skip to content

Merge pull request #183 from interlynk-io/180-spdx-creator-name-may-i… #17

Merge pull request #183 from interlynk-io/180-spdx-creator-name-may-i…

Merge pull request #183 from interlynk-io/180-spdx-creator-name-may-i… #17

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 }}