Skip to content

allow for user-defined translations #7

allow for user-defined translations

allow for user-defined translations #7

Workflow file for this run

name: Build
# Run when tags are pushed or manually
on:
workflow_dispatch:
push:
tags:
- '*'
# contents: write is required to publish artifacts
# https://goreleaser.com/ci/actions/#token-permissions
permissions:
contents: write
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21.x'
- name: Go lint
run: |
go install golang.org/x/lint/golint@latest
golint .
- name: Staticcheck
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
staticcheck .
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}