Skip to content

Commit

Permalink
deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
timofey-kurakin-m10 authored and ivan-kripakov-m10 committed Dec 18, 2023
1 parent 1e7cc4e commit 3cc59d7
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 52 deletions.
24 changes: 11 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
name: Release

on:
push:
branches-ignore:
- '**'
tags:
- 'v*.*.*'
# to be used by fork patch-releases ^^
- 'v*.*.*-*'
workflow_dispatch:
inputs:
TAG:
description: TAG (e.g., 1.0.0)
required: true

jobs:
goreleaser:
Expand All @@ -20,9 +18,10 @@ jobs:

- name: Prepare
id: prepare
env:
TAG: latest
run: |
TAG=${GITHUB_REF#refs/tags/}
echo ::set-output name=tag_name::${TAG}
echo ::set-output name=tag_name::latest
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand All @@ -31,7 +30,6 @@ jobs:
run: |
make release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION: ${{ steps.prepare.outputs.tag_name }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
GITHUB_TOKEN: ${{ secrets.GH_TOKEN_WRITE_PACKAGES }}
VERSION: latest
TAG: latest
66 changes: 33 additions & 33 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ builds:
env:
- CGO_ENABLED=0
goos:
- freebsd
- windows
#- freebsd
#- windows
- darwin
- linux
goarch:
- amd64
- arm64
- arm
#- arm64
#- arm
goarm:
- '7'
ldflags:
Expand Down Expand Up @@ -124,7 +124,7 @@ snapshot:

dockers:
- image_templates:
- dkron/{{ .ProjectName }}:{{ .Version }}-amd64
- ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}-amd64
dockerfile: Dockerfile.release
use: buildx
goos: linux
Expand All @@ -145,39 +145,39 @@ dockers:
build_flag_templates:
- --platform=linux/amd64

- image_templates:
- dkron/{{ .ProjectName }}:{{ .Version }}-arm64
dockerfile: Dockerfile.release
use: buildx
goos: linux
goarch: arm64
ids: *docker-ids
build_flag_templates:
- --platform=linux/arm64/v8

- image_templates:
- dkron/{{ .ProjectName }}:{{ .Version }}-armv7
dockerfile: Dockerfile.release
use: buildx
goos: linux
goarch: arm
goarm: '7'
ids: *docker-ids
build_flag_templates:
- --platform=linux/arm/v7
#- image_templates:
# - ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}-arm64
# dockerfile: Dockerfile.release
# use: buildx
# goos: linux
# goarch: arm64
# ids: *docker-ids
# build_flag_templates:
# - --platform=linux/arm64/v8

#- image_templates:
# - ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}-armv7
# dockerfile: Dockerfile.release
# use: buildx
# goos: linux
# goarch: arm
# goarm: '7'
# ids: *docker-ids
# build_flag_templates:
# - --platform=linux/arm/v7

docker_manifests:
- name_template: dkron/{{ .ProjectName }}:{{ .Version }}
- name_template: ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}
image_templates:
- dkron/{{ .ProjectName }}:{{ .Version }}-amd64
- dkron/{{ .ProjectName }}:{{ .Version }}-arm64
- dkron/{{ .ProjectName }}:{{ .Version }}-armv7
- ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}-amd64
#- dkron/{{ .ProjectName }}:{{ .Version }}-arm64
#- dkron/{{ .ProjectName }}:{{ .Version }}-armv7

- name_template: dkron/{{ .ProjectName }}:latest
- name_template: ghcr.io/m10-payments/{{ .ProjectName }}:latest
image_templates:
- dkron/{{ .ProjectName }}:{{ .Version }}-amd64
- dkron/{{ .ProjectName }}:{{ .Version }}-arm64
- dkron/{{ .ProjectName }}:{{ .Version }}-armv7
- ghcr.io/m10-payments/{{ .ProjectName }}:{{ .Version }}-amd64
#- dkron/{{ .ProjectName }}:{{ .Version }}-arm64
#- dkron/{{ .ProjectName }}:{{ .Version }}-armv7

changelog:
sort: asc
Expand Down
13 changes: 7 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ fury: $(LINUX_PKGS)
$(LINUX_PKGS):
fury push --as distribworks $@

PACKAGE_NAME := github.com/distribworks/dkron
GOLANG_CROSS_VERSION ?= v1.18.1
PACKAGE_NAME := ghcr.io/m10-payments/dkron
GOLANG_CROSS_VERSION ?= v1.21.5

.PHONY: release-dry-run
release-dry-run:
Expand All @@ -15,14 +15,15 @@ release-dry-run:
-v ${PWD}:/dkron \
-w /dkron \
-e GITHUB_TOKEN \
-e VERSION=${VERSION} \
-e DOCKER_USERNAME \
-e DOCKER_PASSWORD \
-e DOCKER_REGISTRY \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-w /go/src/$(PACKAGE_NAME) \
goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
--rm-dist --skip-validate --skip-publish --timeout=1h
--rm-dist --skip-validate --skip-publish --timeout=1h --parallelism=1

.PHONY: release
release:
Expand All @@ -32,14 +33,14 @@ release:
-v ${PWD}:/dkron \
-w /dkron \
-e GITHUB_TOKEN \
-e VERSION=${VERSION} \
-e DOCKER_USERNAME \
-e DOCKER_PASSWORD \
-e DOCKER_REGISTRY \
-e GORELEASER_CURRENT_TAG=v3.2.7-M1 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/$(PACKAGE_NAME) \
-w /go/src/$(PACKAGE_NAME) \
goreleaser/goreleaser-cross:${GOLANG_CROSS_VERSION} \
--rm-dist --skip-validate --timeout=1h
release --rm-dist --skip-validate --timeout=1h

.PHONY: clean
clean:
Expand Down

0 comments on commit 3cc59d7

Please sign in to comment.