Skip to content

Commit

Permalink
Merge pull request #62 from mutablelogic/v4
Browse files Browse the repository at this point in the history
Updated workflows
  • Loading branch information
djthorpe authored Jun 3, 2024
2 parents 1a3e86f + c62ae7b commit fe7801c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/container.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,11 @@ jobs:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create Manifest
- name: Create
run: |
docker manifest create ${{ needs.var.outputs.image }}:${{ matrix.tag }} \
--amend ${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }} \
--amend ${{ needs.var.outputs.image }}-linux-arm64:${{ needs.var.outputs.tag }}
docker image ls
- name: Annotate
run: |
docker manifest annotate --arch arm64 --os linux \
Expand All @@ -93,7 +92,7 @@ jobs:
docker manifest annotate --arch amd64 --os linux \
${{ needs.var.outputs.image }}:${{ matrix.tag }} \
${{ needs.var.outputs.image }}-linux-amd64:${{ needs.var.outputs.tag }}
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
- name: Push
run: |
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
docker manifest push ${{ needs.var.outputs.image }}:${{ matrix.tag }}
2 changes: 1 addition & 1 deletion .github/workflows/merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.22' ]
go-version: [ '1.21', '1.22' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit fe7801c

Please sign in to comment.