Skip to content

0.1.3 release

0.1.3 release #9

Workflow file for this run

name: Release
on:
# # Indicates I want to run this workflow on all branches, PR, and tags
push:
tags: ["v*"]
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: cashapp/activate-hermit@v1
with:
working-directory: .hermit
cache: "true"
- name: Install deps
run: make deps
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
distribution: goreleaser
version: latest
args: release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}