-
Notifications
You must be signed in to change notification settings - Fork 34
56 lines (47 loc) · 1.59 KB
/
snapshot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Publish snapshot to docker hub
on:
push:
branches:
- master
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ~1.23
check-latest: true
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Install eget
run: go install github.com/zyedidia/eget@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean --snapshot --config .goreleaser-snapshot.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to DockerHub
run: |
docker push creativeprojects/resticprofile:nightly-arm64v8
docker push creativeprojects/resticprofile:nightly-amd64
docker manifest create "creativeprojects/resticprofile:nightly" \
--amend "creativeprojects/resticprofile:nightly-amd64" \
--amend "creativeprojects/resticprofile:nightly-arm64v8"
docker manifest inspect "creativeprojects/resticprofile:nightly"
docker manifest push "creativeprojects/resticprofile:nightly"
shell: bash