Skip to content

Commit

Permalink
debug push in specific images
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jan 3, 2025
1 parent f9fcaf8 commit 66930bc
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- run: docker image ls
- name: Push to github container registry
if: ${{ success() && steps.login.conclusion != 'skipped' }}
run: make push_base
Expand Down Expand Up @@ -110,9 +109,16 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Tag as latest
if: ${{ success() && steps.login.conclusion != 'skipped' }}
run: "make tag_latest_${{ matrix.img }}"
env:
BUILD_AMD64: ${{ fromJSON('[0, 1]')[matrix.arch.name == 'amd64'] }}
BUILD_ARM64: ${{ fromJSON('[0, 1]')[matrix.arch.name == 'arm64'] }}
- run: docker image ls
- name: Push to github container registry
if: ${{ success() && steps.login.conclusion != 'skipped' }}
run: "make tag_latest_${{ matrix.img }} push_${{ matrix.img }}"
run: "make push_${{ matrix.img }}"
env:
BUILD_AMD64: ${{ fromJSON('[0, 1]')[matrix.arch.name == 'amd64'] }}
BUILD_ARM64: ${{ fromJSON('[0, 1]')[matrix.arch.name == 'arm64'] }}

0 comments on commit 66930bc

Please sign in to comment.