Skip to content

Commit

Permalink
task file
Browse files Browse the repository at this point in the history
  • Loading branch information
RangelReale committed Oct 11, 2023
1 parent 7c7a45f commit 69a9624
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- skip: true

archives:
- format: tar.gz
# this name template makes the OS and Arch compatible with the results of uname.
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
# use zip for windows archives
format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'

# The lines beneath this are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj
32 changes: 32 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
version: '3'

tasks:
current-version:
cmds:
- 'echo "Version: {{.GIT_TAG_CURRENT}}"'
silent: true
vars:
GIT_TAG_CURRENT:
sh: 'git describe --tags --abbrev=0'
release-version:
cmds:
- 'echo "Version: {{.GIT_TAG_CURRENT}} => {{.VERSION}}"'
- task: release-version-internal
vars:
GIT_TAG_CURRENT:
sh: 'git describe --tags --abbrev=0'
requires:
vars: [VERSION]
preconditions:
- sh: 'test -z "$(git status --porcelain)"'
msg: 'there are uncommited git changes'
silent: true
release-version-internal:
internal: true
prompt: "Creating and pushing tag {{.VERSION}}. Are you sure?"
cmds:
- 'git tag {{.VERSION}}'
- 'git push --tags'
requires:
vars: [VERSION]
silent: true

0 comments on commit 69a9624

Please sign in to comment.