-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
150 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,10 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
|
||
- name: Fetch annotated tags | ||
run: | | ||
git fetch origin --force "$GITHUB_REF:$GITHUB_REF" | ||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
|
@@ -31,8 +35,8 @@ jobs: | |
- name: Store Git Tag | ||
id: "getTag" | ||
run: | | ||
echo ::set-output name=releaseTag::$(echo "${GITHUB_REF##*prepare-}") | ||
echo ::set-output name=triggerTag::$(echo "${GITHUB_REF##*/}") | ||
echo "releaseTag=${GITHUB_REF##*prepare-}" >> $GITHUB_OUTPUT | ||
echo "triggerTag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT | ||
- name: "Tag release commit" | ||
env: | ||
|
@@ -42,10 +46,17 @@ jobs: | |
git config user.name 'githooks-bot' | ||
git config user.email '[email protected]' | ||
# Check we got an annotated tag. | ||
[ "$(git cat-file -t "$TRIGGER_TAG")" = "tag" ] || { | ||
echo "Tag '$TRIGGER_TAG' is not an annotated tag." | ||
exit 1 | ||
} | ||
# Gets the message on the annotated commit: | ||
deref() { git for-each-ref "refs/tags/$TRIGGER_TAG" --format="%($1)" ; }; | ||
# Creates a new tag with the same message, including trailing headers. | ||
git tag "$RELEASE_TAG" -a -m "$(deref contents)" | ||
git tag -a -m "$(deref contents)" "$RELEASE_TAG" | ||
git tag "githooks/$RELEASE_TAG" | ||
- name: Define Release Branch | ||
|
@@ -57,39 +68,68 @@ jobs: | |
RELEASE_BRANCH="main" | ||
RELEASE_VERSION="${RELEASE_TAG##v}" | ||
regex="^Release-Branch:\s+(.*)$" | ||
echo "Get release branch on tag '$RELEASE_TAG'." | ||
# Gets the message on the annotated commit: | ||
deref() { | ||
git for-each-ref "refs/tags/$RELEASE_TAG" --format="%($1)" ; | ||
}; | ||
deref contents | ||
regex="^Release-Branch:\s+(.*)$" | ||
if deref contents | grep -qE "$regex"; then | ||
RELEASE_BRANCH=$(deref contents | grep -E "$regex" | | ||
sed -E "s/$regex/\1/") || { | ||
echo "Release-Branch trailer is wrong." | ||
exit 1 | ||
} | ||
[ -n "$RELEASE_BRANCH" ] || { | ||
echo "Release-Branch trailer is empty." | ||
exit 1 | ||
} | ||
fi | ||
# Fetch the branch. | ||
git fetch --depth 50 origin "$RELEASE_BRANCH" | ||
# Check if its reachable. | ||
[ -n "$(git rev-list --first-parent \ | ||
--ancestry-path | ||
--ancestry-path \ | ||
"$RELEASE_TAG^..origin/$RELEASE_BRANCH")" ] || { | ||
echo "Tag is not reachable from '$RELEASE_BRANCH' (--first-parent) !" >&2 | ||
exit 1 | ||
} | ||
echo ::set-output name=releaseVersion ::$RELEASE_VERSION | ||
echo ::set-output name=releaseBranch ::$RELEASE_BRANCH | ||
# Use only a small release config | ||
# when not on `main` branch. | ||
if [ "$RELEASE_BRANCH" != "main" ]; then | ||
echo "Writing release note." | ||
echo "**WARNING: Do not install this version! For internal testing only.**" >>"githooks/.release_notes.md" | ||
fi | ||
echo "releaseVersion=$RELEASE_VERSION" >> $GITHUB_OUTPUT | ||
echo "releaseBranch=$RELEASE_BRANCH" >> $GITHUB_OUTPUT | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v2 | ||
if: ${{ steps.releaseBranch.outputs.releaseBranch == 'main' }} | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
version: latest | ||
workdir: githooks | ||
args: "release --clean" | ||
env: | ||
GORELEASER_CURRENT_TAG: ${{ steps.getTag.outputs.releaseTag }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} | ||
|
||
- name: Run GoReleaser (non-main) | ||
if: ${{ steps.releaseBranch.outputs.releaseBranch != 'main' }} | ||
uses: goreleaser/goreleaser-action@v5 | ||
with: | ||
version: latest | ||
workdir: githooks | ||
args: release --clean | ||
args: "release --clean -f .goreleaser-small.yaml --release-notes .release-notes.md" | ||
env: | ||
GORELEASER_CURRENT_TAG: ${{ steps.getTag.outputs.releaseTag }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -102,5 +142,4 @@ jobs: | |
run: | | ||
# go releaser already pushed release tag | ||
git push origin "githooks/$RELEASE_TAG" | ||
git push -f origin ":$TRIGGER_TAG" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.go | ||
__debug_bin | ||
vendor | ||
dist | ||
dist | ||
.release-notes.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# Check Documentation: | ||
# https://goreleaser.com/customization/ | ||
project_name: githooks | ||
before: | ||
hooks: | ||
- go mod download | ||
- go mod vendor | ||
- go generate -mod=vendor ./... | ||
builds: | ||
- id: runner | ||
binary: githooks-runner | ||
main: ./apps/runner | ||
env: &ENV | ||
- CGO_ENABLED=0 | ||
goos: &GOOS | ||
- linux | ||
goarch: &GOARCH | ||
- amd64 | ||
- id: cli | ||
binary: githooks-cli | ||
main: ./apps/cli | ||
env: *ENV | ||
goos: *GOOS | ||
goarch: *GOARCH | ||
- id: dialog | ||
binary: githooks-dialog | ||
main: ./apps/dialog | ||
env: *ENV | ||
goos: *GOOS | ||
goarch: *GOARCH | ||
archives: | ||
- id: githooks | ||
builds: | ||
- runner | ||
- cli | ||
- dialog | ||
name_template: '{{ .ProjectName }}-{{ .Version }}-{{ if eq .Os "darwin" }}macos{{else}}{{ .Os }}{{end}}.{{ .Arch }}' | ||
format: tar.gz | ||
files: | ||
- none* | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
checksum: | ||
name_template: "{{ .ProjectName }}.checksums" | ||
algorithm: sha256 | ||
snapshot: | ||
name_template: "{{ .Tag }}" | ||
changelog: | ||
filters: | ||
# Commit messages matching the regexp listed here will be removed from | ||
# the changelog | ||
exclude: | ||
- '^\[np\]' | ||
- '^\[docs\]' | ||
signs: | ||
- artifacts: checksum | ||
cmd: gpg | ||
# Signing with the private key where 'deploy.asc' is this public key in this repo. | ||
args: | ||
[ | ||
"-u", | ||
"{{ .Env.GPG_FINGERPRINT }}", | ||
"--output", | ||
"${signature}", | ||
"--detach-sign", | ||
"${artifact}", | ||
] | ||
signature: "${artifact}.sig" | ||
release: | ||
github: | ||
owner: gabyx | ||
name: githooks | ||
prerelease: auto | ||
# Use these values for you own gitea instance... | ||
# gitea_urls: | ||
# api: "https://git.company.com/api/v1" | ||
# download: "https://git.company.com" | ||
# # set to true if you use a self-signed certificate | ||
# skip_tls_verify: true | ||
|
||
# Use these values for you own github instance... | ||
# github_urls: | ||
# api: https://git.company.com/api/v3/ | ||
# upload: https://git.company.com/api/uploads/ | ||
# download: https://git.company.com/ | ||
# # set to true if you use a self-signed certificate | ||
# skip_tls_verify: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
{ "version": "3.0.0" } | ||
{ | ||
"version": "3.0.0-rc1" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters