Skip to content

πŸŽ‰ Release Binary #7

πŸŽ‰ Release Binary

πŸŽ‰ Release Binary #7

Workflow file for this run

name: πŸŽ‰ Release Binary
on:
create:
tags:
- v*
workflow_dispatch:
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: "Check out code"
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: "Set up Go"
uses: actions/setup-go@v3
with:
go-version: 1.17
- name: "Create release on GitHub"
uses: goreleaser/goreleaser-action@v3
with:
args: "release --rm-dist"
version: latest
workdir: .
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"