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:
parent
626b9ee479
commit
7e2a9f26c4
1 changed files with 8 additions and 1 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue