1
0
Fork 0
mirror of https://github.com/librenms/docker.git synced 2026-08-02 06:43:23 +00:00

Add debug steps

This commit is contained in:
CrazyMax 2020-09-17 19:43:22 +02:00
parent 626b9ee479
commit 7e2a9f26c4
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7

View file

@ -46,6 +46,8 @@ jobs:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
buildkitd-flags: "--debug"
-
name: Login to DockerHub
if: github.event_name != 'pull_request'
@ -68,6 +70,11 @@ jobs:
VCS_REF=${{ steps.prep.outputs.vcs_ref }}
-
name: Check manifest
if: success() && github.event_name != 'pull_request' && (endsWith(github.ref, github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
if: github.event_name != 'pull_request' && (endsWith(github.ref, github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
run: |
docker buildx imagetools inspect ${{ steps.prep.outputs.docker_image }}:${{ steps.prep.outputs.version }}
-
name: Check pull
if: github.event_name != 'pull_request' && (endsWith(github.ref, github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
run: |
docker pull ${{ steps.prep.outputs.docker_image }}:${{ steps.prep.outputs.version }}