6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-07 02:40:36 +00:00

Update GitHub actions workflows

This commit is contained in:
Grzegorz Dlugoszewski
2025-08-11 22:42:10 +02:00
parent 6215297f4b
commit a4b92d5c9d
8 changed files with 422 additions and 93 deletions

24
.github/workflows/release-simple.yml vendored Normal file
View File

@@ -0,0 +1,24 @@
name: release
on:
push:
tags:
- '*'
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GORELEASER_TOKEN }}