Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Nov 7, 2024
1 parent 3c53a59 commit 9db68e3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ runs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Set up Docker build
uses: docker/build-push-action@v6
- uses: hadolint/[email protected]
with:
dockerfile: ${{ inputs.docker-context }}/Dockerfile
Expand Down
15 changes: 12 additions & 3 deletions .github/actions/push/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,18 @@ inputs:
runs:
using: "composite"
steps:
- name: Log in to registry
run: echo "${{ inputs.github-token }}" | docker login ghcr.io -u $ --password-stdin
shell: bash
# - name: Log in to registry
# run: echo "${{ inputs.github-token }}" | docker login ghcr.io -u $ --password-stdin
# shell: bash

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ inputs.github-token }}


- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down

0 comments on commit 9db68e3

Please sign in to comment.