File tree Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Expand file tree Collapse file tree 3 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 9
9
steps :
10
10
- name : Checkout
11
11
uses : actions/checkout@v2
12
+ - name : Read Versions File
13
+ id : versions
14
+
15
+ with :
16
+ path : versions
17
+ log-variables : true
12
18
- name : Set up QEMU
13
19
uses : docker/setup-qemu-action@v2
14
20
- name : Set up Docker Buildx
26
32
platforms : linux/amd64,linux/arm64
27
33
push : true
28
34
build-args : |
29
- GO_VERSION=1.18
30
- DLV_VERSION=${{ github.ref_name }}
35
+ GO_VERSION=${{ steps.versions.outputs.go_version }}
36
+ DLV_VERSION=${{ steps.versions.outputs.dlv_version }}
31
37
tags : |
32
- ghcr.io/${{ github.repository }}:${{ github.ref_name }}
38
+ ghcr.io/${{ github.repository }}:${{ steps.versions.outputs.dlv_version }}-${{ steps.versions.outputs.delve_debugger_version }}
33
39
ghcr.io/${{ github.repository }}:latest
Original file line number Diff line number Diff line change 1
- GO_VERSION =1.18
2
- DLV_VERSION =1.9.1
3
- DELVE_DEBUGGER_VERSION =1
1
+ include versions
4
2
5
3
IMAGE_NAME =ghcr.io/moio/delve-debugger
6
4
Original file line number Diff line number Diff line change
1
+ GO_VERSION=1.18
2
+ DLV_VERSION=1.9.1
3
+ DELVE_DEBUGGER_VERSION=1
You can’t perform that action at this time.
0 commit comments