Skip to content

Commit

Permalink
feat(ci): add debug job to inspect github.event.push.paths in docker-…
Browse files Browse the repository at this point in the history
…build-push workflow
  • Loading branch information
ozeliurs committed Oct 7, 2024
1 parent d3e66fd commit 762e78c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/docker-build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ permissions:
packages: write

jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Debug
run: |
echo "github.event.push.paths: ${{ github.event.push.paths }}"
build-and-push-base:
if: github.event_name == 'workflow_dispatch' || contains(github.event.push.paths, 'build-base/')
runs-on: ubuntu-latest
Expand Down

0 comments on commit 762e78c

Please sign in to comment.