Attempt to fix build failures
This commit is contained in:
parent
8ef9135b62
commit
620613e745
1 changed files with 26 additions and 7 deletions
33
.github/workflows/docker-publish.yml
vendored
33
.github/workflows/docker-publish.yml
vendored
|
@ -39,12 +39,31 @@ jobs:
|
||||||
version: v0.5.1
|
version: v0.5.1
|
||||||
buildkitd-flags: --debug
|
buildkitd-flags: --debug
|
||||||
|
|
||||||
- name: Registry Authentication
|
# - name: Registry Authentication
|
||||||
run: |
|
# run: |
|
||||||
echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
# echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
|
||||||
|
|
||||||
- name: Build Image
|
# - name: Build Image
|
||||||
env:
|
# env:
|
||||||
IMAGE_ID: docker.pkg.github.com/${{ github.repository }}/${{ matrix.image }}:latest
|
# IMAGE_ID: docker.pkg.github.com/${{ github.repository }}/${{ matrix.image }}:latest
|
||||||
|
# run: |
|
||||||
|
# docker buildx build --push --platform=linux/amd64 --tag=$IMAGE_ID ./${{ matrix.image }}
|
||||||
|
|
||||||
|
- name: Set up containerd
|
||||||
|
uses: crazy-max/ghaction-setup-containerd@v1
|
||||||
|
|
||||||
|
- name: Build Docker image
|
||||||
|
uses: docker/build-push-action@v2
|
||||||
|
with:
|
||||||
|
context: ./alpine
|
||||||
|
file: ./Dockerfile
|
||||||
|
platforms: linux/amd64
|
||||||
|
tags: docker.pkg.github.com/${{ github.repository }}/${{ matrix.image }}:latest
|
||||||
|
outputs: type=oci,dest=/tmp/image.tar
|
||||||
|
|
||||||
|
- name: Import image in containerd
|
||||||
run: |
|
run: |
|
||||||
docker buildx build --push --platform=linux/amd64 --tag=$IMAGE_ID ./${{ matrix.image }}
|
sudo ctr i import --base-name docker.io/user/app --digests --all-platforms /tmp/image.tar
|
||||||
|
- name: Push image with containerd
|
||||||
|
run: |
|
||||||
|
sudo ctr --debug i push --user "${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}" docker.pkg.github.com/${{ github.repository }}/${{ matrix.image }}:latest
|
||||||
|
|
Loading…
Reference in a new issue