Skip to content

feat(auth): implement plaintext, hashed, and api key authentication m… #46

feat(auth): implement plaintext, hashed, and api key authentication m…

feat(auth): implement plaintext, hashed, and api key authentication m… #46

Workflow file for this run

name: Release cross-platform binaries
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: golangci-lint
uses: golangci/golangci-lint-action@v9
with:
version: latest
release:
needs: lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}