Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
fopina committed May 22, 2020
1 parent 735d10a commit af74c04
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,12 @@ jobs:
- name: prepare for docker buildx
# hacky but clean enough
run: |
mkdir -p dist/linux/arm64
tar xf dist/dkron_*_linux_arm64.tar.gz -C dist/linux/arm64
mkdir -p dist/linux/amd64
tar xf dist/dkron_*_linux_amd64.tar.gz -C dist/linux/amd64
mkdir -p dist/linux/arm64
tar xf dist/dkron_*_linux_arm64.tar.gz -C dist/linux/arm64
mkdir -p dist/linux/arm/v7
tar xf dist/dkron_*_linux_armv7.tar.gz -C dist/linux/arm/v7
- name: login to dockerhub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
Expand Down
19 changes: 3 additions & 16 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,9 @@ builds:
goarch:
- amd64
- arm64
- arm
goarm:
- 7
ldflags:
- -s -w -X github.com/distribworks/dkron/v3/dkron.Version={{.Version}} -X github.com/distribworks/dkron/v3/dkron.Codename=merichuas

Expand Down Expand Up @@ -155,19 +158,3 @@ changelog:
- '^docs:'
- '^test:'
- '^Merge pull request'

# dockers:
# -
# dockerfile: Dockerfile.hub
# binaries:
# - dkron
# - dkron-executor-http
# - dkron-executor-shell
# - dkron-processor-syslog
# - dkron-processor-log
# - dkron-processor-files
# - dkron-processor-fluent
# image_templates:
# - "fopina/dkron:latest"
# - "fopina/dkron:{{ .Tag }}"
# - "fopina/dkron:v{{ .Major }}"

0 comments on commit af74c04

Please sign in to comment.