Skip to content

tom-on-the-internet is releasing Cemetery Escape #14

tom-on-the-internet is releasing Cemetery Escape

tom-on-the-internet is releasing Cemetery Escape #14

Workflow file for this run

name: Release
run-name: ${{ github.actor }} is releasing Cemetery Escape
permissions:
contents: write
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "^1.21"
- name: Check out repository code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Build and Run # make sure it runs
run: |
go version
go build .
./cemetery-escape help
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
if: startsWith(github.ref, 'refs/tags/')
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}