Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Updated manifest creation
Browse files Browse the repository at this point in the history
  • Loading branch information
djthorpe committed Oct 6, 2021
1 parent 4a96618 commit 382b295
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/make-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,17 @@ jobs:
id: tags
run: |
echo ::set-output name=manifest::ghcr.io/${{ github.repository_owner }}/runner-image
- name: Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Create Manifest
run: |
docker manifest create ${{ steps.tags.outputs.manifest }}
docker pull ${{ steps.tags.outputs.manifest }}-arm
docker pull ${{ steps.tags.outputs.manifest }}-arm64
docker manifest create ${{ steps.tags.outputs.manifest }} \
--amend ${{ steps.tags.outputs.manifest }}-arm \
--amend ${{ steps.tags.outputs.manifest }}-arm64
docker push ${{ steps.tags.outputs.manifest }}

0 comments on commit 382b295

Please sign in to comment.