Skip to content

chore: add armv7 binaries #71

chore: add armv7 binaries

chore: add armv7 binaries #71

Workflow file for this run

name: Release
on:
push:
tags:
- v*
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Checkout
uses: actions/checkout@v2
- name: Go module init
run: |
cd casket
go mod init casket
cd ..
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}