Skip to content

Tweak goreleaser to create AWS lambda compatible assets #3

Tweak goreleaser to create AWS lambda compatible assets

Tweak goreleaser to create AWS lambda compatible assets #3

Workflow file for this run

# .github/workflows/release.yaml
name: release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}