Skip to content

feat: simplify release workflow #2

feat: simplify release workflow

feat: simplify release workflow #2

Workflow file for this run

name: goreleaser
on:
push:
# run only against tags
tags:
- "v*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cachix/install-nix-action@V27
with:
extra_nix_config: |
accept-flake-config = true
experimental-features = nix-command flakes
- name: Enter Nix Devshell
run: |
nix develop --command bash -c "goreleaser release --clean"