Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated workflows #62

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading