Skip to content

Commit

Permalink
updated goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
mschneider82 committed Jan 4, 2023
1 parent 5021ee7 commit 0a68ccc
Show file tree
Hide file tree
Showing 3 changed files with 871 additions and 26 deletions.
32 changes: 21 additions & 11 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@
name: goreleaser

on:
pull_request:
push:
# run only against tags
tags:
- '*'

permissions:
contents: write
# packages: write
# issues: write

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
- run: git fetch --force --tags
- uses: actions/setup-go@v3
with:
go-version: 1.14
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
go-version: '>=1.19.4'
cache: true
# More assembly might be required: Docker logins, GPG, etc. It all depends
# on your needs.
- uses: goreleaser/goreleaser-action@v4
with:
# either 'goreleaser' (default) or 'goreleaser-pro':
distribution: goreleaser
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro'
# distribution:
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
33 changes: 18 additions & 15 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,32 @@ module schneider.vip/share
go 1.13

require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/atotto/clipboard v0.1.2
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
github.com/atotto/clipboard v0.1.4
github.com/cespare/xxhash v1.1.0 // indirect
github.com/chzyer/readline v1.5.1 // indirect
github.com/coreos/ioprogress v0.0.0-20151023204047-4637e494fd9b
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dropbox/dropbox-sdk-go-unofficial v5.6.0+incompatible
github.com/dustin/go-humanize v1.0.0
github.com/golang/protobuf v1.4.1 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.1 // indirect
github.com/juju/ansiterm v1.0.0 // indirect
github.com/lunixbochs/vtclean v1.0.0 // indirect
github.com/manifoldco/promptui v0.7.0
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/manifoldco/promptui v0.9.0
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mdp/qrterminal v1.0.1
github.com/mschneider82/easygo v0.0.0-20180731142950-f2a24982ceed
github.com/sethvargo/go-password v0.1.3
github.com/spf13/cast v1.3.1
golang.org/x/crypto v0.0.0-20200429183012-4b2356b1ed79 // indirect
golang.org/x/net v0.0.0-20200505041828-1ed23360d12c // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indirect
google.golang.org/api v0.23.0
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/genproto v0.0.0-20200430143042-b979b6f78d84 // indirect
google.golang.org/grpc v1.29.1 // indirect
github.com/sethvargo/go-password v0.2.0
github.com/spf13/cast v1.5.0
golang.org/x/crypto v0.4.0 // indirect
golang.org/x/net v0.4.0 // indirect
golang.org/x/oauth2 v0.3.0
google.golang.org/api v0.105.0
google.golang.org/genproto v0.0.0-20221227171554-f9683d7f8bef // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.2.8 // indirect
)
Loading

0 comments on commit 0a68ccc

Please sign in to comment.