Disabled github actions and changed the shell to sh

This commit is contained in:
Liviu Burcusel 2025-12-15 13:36:18 +01:00
parent 823bd89e13
commit 609a460b51
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
7 changed files with 2 additions and 2 deletions

View file

@ -1,33 +0,0 @@
name: Goreleaser
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: "^1"
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
# either 'goreleaser' (default) or 'goreleaser-pro'
distribution: goreleaser
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}