File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -79,12 +79,11 @@ jobs:
79
79
registry : ghcr.io
80
80
username : ${{ github.repository_owner }}
81
81
password : ${{ secrets.GITHUB_TOKEN }}
82
- - name : Create Manifest
82
+ - name : Create
83
83
run : |
84
84
docker manifest create ${{ needs.var.outputs.image }}:${{ matrix.tag }} \
85
85
--amend ${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }} \
86
86
--amend ${{ needs.var.outputs.image }}-linux-arm64:${{ needs.var.outputs.tag }}
87
- docker image ls
88
87
- name : Annotate
89
88
run : |
90
89
docker manifest annotate --arch arm64 --os linux \
93
92
docker manifest annotate --arch amd64 --os linux \
94
93
${{ needs.var.outputs.image }}:${{ matrix.tag }} \
95
94
${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }}
95
+ docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
96
96
- name : Push
97
97
run : |
98
- docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
99
-
98
+ docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
Original file line number Diff line number Diff line change 31
31
runs-on : ubuntu-latest
32
32
strategy :
33
33
matrix :
34
- go-version : [ '1.22' ]
34
+ go-version : [ '1.21', '1. 22' ]
35
35
steps :
36
36
- name : Checkout repository
37
37
uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments