Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
the-maldridge committed Mar 18, 2021
1 parent cd0aa9b commit 51eea10
Show file tree
Hide file tree
Showing 4 changed files with 118 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: goreleaser

on:
push:
tags:
- '*'

jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.15.x
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v1
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24 changes: 24 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
before:
hooks:
- go mod vendor
- scripts/prepare.sh
builds:
- goos:
- linux
archives:
- replacements:
linux: Linux
386: i386
amd64: x86_64
files:
- LICENSE
- NOTICE
- README.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
release:
github:
owner: netauth
name: nsscache
3 changes: 3 additions & 0 deletions scripts/prepare.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh

./scripts/vendor-licenses > NOTICE
64 changes: 64 additions & 0 deletions scripts/vendor-licenses
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
#!/bin/bash

list_vendor_files() {
find vendor -type f -a \( -iname 'COPYING*' -o -iname 'LICENSE*' \) | sort
}

list_files() {
goroot="$(go env GOROOT)"
goid='Go programming language'
if [ -r "$goroot/LICENSE" ]; then
echo "${goid}::$goroot/LICENSE"
elif [ -r /usr/share/licenses/go/LICENSE ]; then
echo "${goid}::/usr/share/licenses/go/LICENSE"
else # last restort: HTTP
echo "${goid}::https://golang.org/LICENSE?m=text"
fi
list_vendor_files
}

generate_notice() {
last=
$0 -all | while IFS=$'\n' read -r license; do
pkg="${license%%::*}"
if [ "$pkg" != "$license" ]; then
license="${license#${pkg}::}"
else
pkg="${pkg#vendor/}"
pkg="${pkg%/*}"
fi

printf "%s" "${last:+'\n\n\n'}"
last=x

echo "$pkg" | sed 'p;s/./-/g'
fetch "${license}"
done
}

fetch() {
case "$1" in
*://*) wget -q -O- "${1#*::}";;
*) cat "${1#*::}";;
esac
}

case "${1--gen}" in
-gen)
if [ -t 1 ]; then
generate_notice | ${PAGER:-more}
else
generate_notice
fi
;;
-src) list_vendor_files;;
-all) list_files;;
-h)
echo 'Usage: vendor-licenses [-h|-gen|-src|-all]' >&2
exit 2
;;
*)
echo "Unrecognized argument: '$1'" >&2
exit 1
;;
esac

0 comments on commit 51eea10

Please sign in to comment.