Skip to content

Commit 460aaad

Browse files
committed
release
Signed-off-by: Tobias Gurtzick <magic@wizardtales.com>
1 parent fc9e777 commit 460aaad

File tree

2 files changed

+38
-44
lines changed

2 files changed

+38
-44
lines changed

.github/workflows/docker.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,24 @@ jobs:
66
multi:
77
runs-on: ubuntu-latest
88
steps:
9-
-
10-
name: Checkout
9+
- name: Checkout
1110
uses: actions/checkout@v2
12-
-
13-
name: Set up QEMU
11+
- name: Set up QEMU
1412
uses: docker/setup-qemu-action@v1
15-
-
16-
name: Set up Docker Buildx
13+
- name: Set up Docker Buildx
1714
uses: docker/setup-buildx-action@v1
18-
-
19-
name: Login to DockerHub
15+
- name: Login to DockerHub
2016
uses: docker/login-action@v1
2117
with:
22-
username: ${{ secrets.DOCKER_USERNAME }}
23-
password: ${{ secrets.DOCKER_TOKEN }}
24-
-
25-
name: Build and push
18+
username: ${{ github.actor }}
19+
password: ${{ secrets.GITHUB_TOKEN }}
20+
- name: Build and push
2621
uses: docker/build-push-action@v2
2722
with:
2823
context: .
2924
file: ./Dockerfile
3025
push: true
3126
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/arm/v6,linux/arm/v7,linux/386
3227
tags: |
33-
peakcom/s5cmd:latest
34-
peakcom/s5cmd:${{ github.event.release.tag_name }}
28+
ghcr.io/wizardtales/s5cmd:latest
29+
ghcr.io/wizardtales/s5cmd:${{ github.event.release.tag_name }}

.goreleaser.yml

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ before:
22
hooks:
33
- make build
44
builds:
5-
-
6-
binary: s5cmd
5+
- binary: s5cmd
76
ldflags: -s -w -X github.com/peak/s5cmd/v2/version.Version={{.Tag}} -X github.com/peak/s5cmd/v2/version.GitCommit={{ .ShortCommit }}
87
env:
98
- CGO_ENABLED=0
@@ -22,7 +21,7 @@ builds:
2221
goarch: 386
2322

2423
archives:
25-
- name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
24+
- name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
2625
replacements:
2726
darwin: macOS
2827
linux: Linux
@@ -34,7 +33,7 @@ archives:
3433
format: zip
3534

3635
checksum:
37-
name_template: '{{ .ProjectName }}_checksums.txt'
36+
name_template: "{{ .ProjectName }}_checksums.txt"
3837

3938
snapshot:
4039
name_template: "{{ .Tag }}"
@@ -43,36 +42,36 @@ changelog:
4342
sort: asc
4443
filters:
4544
exclude:
46-
- '^docs:'
47-
- '^test:'
45+
- "^docs:"
46+
- "^test:"
4847
- Merge pull request
4948
- Merge branch
5049

51-
brews:
52-
- tap:
53-
owner: peak
54-
name: homebrew-tap
55-
folder: Formula
56-
name: s5cmd
57-
description: Parallel S3 and local filesystem execution tool
58-
homepage: https://github.com/peak/s5cmd
59-
license: MIT
60-
test: |
61-
system "#{bin}/s5cmd version"
50+
# brews:
51+
# - tap:
52+
# owner: peak
53+
# name: homebrew-tap
54+
# folder: Formula
55+
# name: s5cmd
56+
# description: Parallel S3 and local filesystem execution tool
57+
# homepage: https://github.com/peak/s5cmd
58+
# license: MIT
59+
# test: |
60+
# system "#{bin}/s5cmd version"
6261

63-
nfpms:
64-
-
65-
vendor: Peak
66-
homepage: https://github.com/peak/s5cmd
67-
license: MIT
68-
maintainer: Peak <packaging@peak.com>
69-
description: |-
70-
Very fast S3 and local filesystem execution tool. It comes with support
71-
for a multitude of operations including tab completion and wildcard
72-
support for files, which can be very handy for your object storage
73-
workflow while working with large number of files.
74-
formats:
75-
- deb
62+
# nfpms:
63+
# -
64+
# vendor: Peak
65+
# homepage: https://github.com/peak/s5cmd
66+
# license: MIT
67+
# maintainer: Peak <packaging@peak.com>
68+
# description: |-
69+
# Very fast S3 and local filesystem execution tool. It comes with support
70+
# for a multitude of operations including tab completion and wildcard
71+
# support for files, which can be very handy for your object storage
72+
# workflow while working with large number of files.
73+
# formats:
74+
# - deb
7675

7776
release:
7877
draft: true

0 commit comments

Comments
 (0)