Skip to content

goreleaser

goreleaser #3

Workflow file for this run

name: goreleaser
on:
workflow_dispatch:
inputs:
tag:
description: "Tag"
required: true
default: "v0.0.0"
version:
description: "Version"
required: true
default: "0.0.0"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
- name: Unit Tests
run: go test -v ./...
- name: Integration Tests
run: go test -v -tags=integration ./...
- name: Create Tag
run: |
git config --local user.email "
git config --local user.name "
git tag -a ${{ github.event.inputs.tag }} -m "Release ${{ github.event.inputs.tag }}"
git push origin ${{ github.event.inputs.tag }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload assets
uses: actions/upload-artifact@v3
with:
name: dbm
path: dist/*