Skip to content

Commit

Permalink
Merge pull request #144 from sveltinio/0.11.0
Browse files Browse the repository at this point in the history
0.11.0
  • Loading branch information
indaco authored Feb 22, 2023
2 parents a7d0870 + f0213e5 commit 9047698
Show file tree
Hide file tree
Showing 211 changed files with 7,191 additions and 3,745 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.17.1
go-version: '>=1.17.0'

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
uses: goreleaser/goreleaser-action@v4
with:
distribution: goreleaser
version: latest
args: release --rm-dist
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.SVELTIN_TOKEN }}
22 changes: 10 additions & 12 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,23 +61,21 @@ scoop:
license: 'Apache-2.0'
skip_upload: false
archives:
# Default format for Mac and Linux
- format: tar.gz
- rlcp: true
# Default format for Mac and Linux
format: tar.gz
# When windows, use .zip instead.
format_overrides:
- goos: windows
format: zip
# Just the naming convention for tarballs... Example: msconsole_1.0.0_darwin_64bit
name_template: '{{.ProjectName}}_{{.Version}}_{{.Os}}-{{.Arch}}'
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
files:
- README.md
- LICENSE
name_template: >-
{{ .ProjectName }}_
{{- .Version }}_
{{- title .Os }}-
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: 'checksums.txt'
snapshot:
Expand Down
Loading

0 comments on commit 9047698

Please sign in to comment.