Skip to content

Commit

Permalink
Specify fullpath when ispections
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed May 15, 2024
1 parent 838d96a commit 9f4cd41
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ jobs:
build-args: |
username=user
oci: true
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# with:
# limit-access-to-actor: true
- name: Inspect the created image
run: 'podman inspect ${{ steps.build-image.outputs.image }}'
run: |
podman inspect localhost/${{ steps.build-image.outputs.image }}:${{ needs.get-meta.outputs.ref_tag }}
- name: Push To ghcr.io
id: push-to-ghcr
if: ${{ github.actor == github.repository_owner }}
Expand Down Expand Up @@ -137,12 +138,13 @@ jobs:
containerfiles: |
./images/ubuntu-nix-systemd/Containerfile
oci: true
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
with:
limit-access-to-actor: true
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# with:
# limit-access-to-actor: true
- name: Inspect the created image
run: 'podman inspect ${{ steps.build-image.outputs.image }}'
run: |
podman inspect localhost/${{ steps.build-image.outputs.image }}:${{ needs.get-meta.outputs.ref_tag }}
- name: Push To ghcr.io
id: push-to-ghcr
if: ${{ github.actor == github.repository_owner }}
Expand Down

0 comments on commit 9f4cd41

Please sign in to comment.