Skip to content

Merge pull request #12 from gravitational/dependabot/go_modules/githu… #4

Merge pull request #12 from gravitational/dependabot/go_modules/githu…

Merge pull request #12 from gravitational/dependabot/go_modules/githu… #4

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Latest Release
defaults:
run:
shell: bash
permissions:
contents: write
pull-requests: read
jobs:
lint:
name: Lint files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
only-new-issues: true
release:
name: Create Release
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
arch:
- darwin/amd64
- darwin/arm64
- linux/amd64
- linux/arm
- linux/arm64
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v4
- name: Get OS and arch info
run: |
GOOSARCH=${{matrix.arch}}
GOOS=${GOOSARCH%/*}
GOARCH=${GOOSARCH#*/}
BINARY_NAME=${{github.repository}}-$GOOS-$GOARCH
echo "BINARY_NAME=$BINARY_NAME" >> $GITHUB_ENV
echo "GOOS=$GOOS" >> $GITHUB_ENV
echo "GOARCH=$GOARCH" >> $GITHUB_ENV
- name: Build
run: |
go build -o "$BINARY_NAME" -v
- name: Release with Notes
uses: softprops/action-gh-release@v1
with:
generate_release_notes: true
files: ${{env.BINARY_NAME}}