Skip to content

Commit 53fb540

Browse files
committed
Update Github actions
1 parent 610bc90 commit 53fb540

File tree

3 files changed

+73
-43
lines changed

3 files changed

+73
-43
lines changed

.github/workflows/readme.yaml

-35
This file was deleted.

.github/workflows/release.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
tags:
66
- v*
77

8+
env:
9+
dockerpushrm_version: "1.7.0"
10+
811
jobs:
912
goreleaser:
1013
runs-on: ubuntu-latest
@@ -60,6 +63,14 @@ jobs:
6063
env:
6164
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6265

66+
- name: push README to Dockerhub
67+
run: |
68+
wget https://github.com/christian-korneck/docker-pushrm/releases/download/v${dockerpushrm_version}/docker-pushrm_linux_amd64
69+
mkdir -p $HOME/.docker/cli-plugins/
70+
mv docker-pushrm_linux_amd64 $HOME/.docker/cli-plugins/docker-pushrm
71+
chmod +x $HOME/.docker/cli-plugins/docker-pushrm
72+
docker pushrm danopstech/speedtest_exporter --file "./README.md" --short "${{ github.event.repository.description }}"
73+
6374
- name: Slack Finish Report
6475
uses: act10ns/slack@v1
6576
if: always()

.goreleaser.yml

+62-8
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,16 @@ builds:
1212
- linux
1313
- windows
1414
- darwin
15+
goarch:
16+
- amd64
17+
- 386
18+
- arm
19+
- arm64
20+
goarm:
21+
- 7
22+
1523
archives:
16-
-
17-
name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}"
24+
- name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
1825
replacements:
1926
darwin: Darwin
2027
linux: Linux
@@ -26,12 +33,59 @@ archives:
2633
format: zip
2734
files:
2835
- none*
29-
dockers:
30-
- image_templates:
31-
- ghcr.io/danopstech/{{.ProjectName}}:latest
32-
- ghcr.io/danopstech/{{.ProjectName}}:{{ .Tag }}
33-
- danopstech/{{.ProjectName}}:latest
34-
- danopstech/{{.ProjectName}}:{{ .Tag }}
3536

3637
checksum:
3738
name_template: 'checksums.txt'
39+
40+
dockers:
41+
- image_templates:
42+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
43+
- danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
44+
use_buildx: true
45+
dockerfile: Dockerfile
46+
build_flag_templates:
47+
- "--platform=linux/amd64"
48+
49+
- image_templates:
50+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm7
51+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm7
52+
use_buildx: true
53+
dockerfile: Dockerfile
54+
goarch: arm
55+
goarm: 7
56+
build_flag_templates:
57+
- "--platform=linux/arm/v7"
58+
59+
- image_templates:
60+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
61+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
62+
use_buildx: true
63+
dockerfile: Dockerfile
64+
goarch: arm64
65+
build_flag_templates:
66+
- "--platform=linux/arm64/v8"
67+
68+
docker_manifests:
69+
# github
70+
- name_template: ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}
71+
image_templates:
72+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
73+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
74+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm7
75+
- name_template: ghcr.io/danopstech/{{.ProjectName}}:latest
76+
image_templates:
77+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
78+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
79+
- ghcr.io/danopstech/{{.ProjectName}}:v{{ .Version }}-arm7
80+
81+
# dockerhub
82+
- name_template: danopstech/{{.ProjectName}}:v{{ .Version }}
83+
image_templates:
84+
- danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
85+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
86+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm7
87+
- name_template: danopstech/{{.ProjectName}}:latest
88+
image_templates:
89+
- danopstech/{{.ProjectName}}:v{{ .Version }}-amd64
90+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm64
91+
- danopstech/{{.ProjectName}}:v{{ .Version }}-arm7

0 commit comments

Comments
 (0)