Skip to content

Commit

Permalink
feat: make goreleaser pro config structs public
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Feb 17, 2024
1 parent 09bf1ef commit 3c97654
Show file tree
Hide file tree
Showing 5 changed files with 1,579 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build

on:
push:
branches:
- "main"
tags:
- "v*"
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: stable
- run: go build -v ./...
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,14 @@ I'll continue to maintain and add features as I already do. The only difference
is that features that feel more "enterprisy" will be added to the paid version
instead (unless someone contributes the code for it).

## What's in this repository?

This repository contains mainly 2 things:

1. The GoReleaser Pro binaries, packages, and archives to download;
1. The GoReleaser Pro configuration `struct`s, so you can use them to integrate
with other tools, or to generate YAML from Go.

## More details

You can find more details and buy it [here](https://goreleaser.com/pro/).
Expand Down
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/goreleaser/goreleaser-pro

go 1.22.0
Empty file added go.sum
Empty file.
Loading

0 comments on commit 3c97654

Please sign in to comment.