Skip to content

Commit fe7801c

Browse files
authored
Merge pull request #62 from mutablelogic/v4
Updated workflows
2 parents 1a3e86f + c62ae7b commit fe7801c

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/container.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,11 @@ jobs:
7979
registry: ghcr.io
8080
username: ${{ github.repository_owner }}
8181
password: ${{ secrets.GITHUB_TOKEN }}
82-
- name: Create Manifest
82+
- name: Create
8383
run: |
8484
docker manifest create ${{ needs.var.outputs.image }}:${{ matrix.tag }} \
8585
--amend ${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }} \
8686
--amend ${{ needs.var.outputs.image }}-linux-arm64:${{ needs.var.outputs.tag }}
87-
docker image ls
8887
- name: Annotate
8988
run: |
9089
docker manifest annotate --arch arm64 --os linux \
@@ -93,7 +92,7 @@ jobs:
9392
docker manifest annotate --arch amd64 --os linux \
9493
${{ needs.var.outputs.image }}:${{ matrix.tag }} \
9594
${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }}
95+
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
9696
- name: Push
9797
run: |
98-
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
99-
98+
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}

.github/workflows/merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
go-version: [ '1.22' ]
34+
go-version: [ '1.21', '1.22' ]
3535
steps:
3636
- name: Checkout repository
3737
uses: actions/checkout@v4

0 commit comments

Comments
 (0)