Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpherrinm committed Dec 15, 2024
1 parent dc8bfd4 commit bc3c3bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ jobs:
persist-credentials: false

- name: Build
run: docker buildx . -f "${{ matrix.image }}" -t "${{ image }}"
run: docker buildx . -f "${{ matrix.dockerfile }}" -t "${{ matrix.image }}"
4 changes: 2 additions & 2 deletions .github/workflows/container-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ jobs:
persist-credentials: false

- name: Build
run: docker buildx . -f "${{ matrix.image }}" -t "${{ image }}"
run: docker buildx . -f "${{ matrix.dockerfile }}" -t "${{ matrix.image }}"

- name: login
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u "${{ github.actor }}" --password-stdin

- name: Push
run: docker push "${{ image }}:${{ github.ref_name }}"
run: docker push "${{ matrix.image }}:${{ github.ref_name }}"

0 comments on commit bc3c3bf

Please sign in to comment.