Skip to content

Commit

Permalink
Add-goreleaser (#10)
Browse files Browse the repository at this point in the history
* chore: add goreleaser

* add workflow

* Standardize
  • Loading branch information
jrschumacher authored Oct 4, 2024
1 parent c12b1ad commit 2a556ba
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
name: Release Please
id: release
with:
token: ${{ secrets.RELEASE_PLEASE_PAT }}
release-type: simple
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@
# tests
coverage.out
coverage.html
junit.xml
junit.xml
dist/
8 changes: 8 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
builds:
- skip: true
release:
github:
owner: jrschumacher
name: go-spaserve
prerelease: auto

0 comments on commit 2a556ba

Please sign in to comment.