Skip to content

feat: Allow excluding directories #28

feat: Allow excluding directories

feat: Allow excluding directories #28

Workflow file for this run

name: release
on:
push:
tags:
- "*"
permissions:
contents: write
packages: write
issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: git fetch --force --tags
- uses: actions/setup-go@v4
with:
go-version: stable
- run: |
sudo apt-get update
sudo apt-get install -y nix-bin
sudo systemctl enable --now nix-daemon
sudo chmod -R 777 /nix/var/nix/daemon-socket
- uses: goreleaser/goreleaser-action@v5
with:
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}