Skip to content

Commit

Permalink
fix(workflow): if statement for file change
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Nov 7, 2023
1 parent fb0ad7c commit 094f2a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,11 @@ jobs:
with:
filters: |
container_folder:
${{ matrix.name }}/*
README.md
# ${{ matrix.name }}/*

- name: ❔ Stop if files not changed
# if: ${{ steps.file_change.outputs.container_folder != 'true' }}
if: ${{ github.event_name != 'pull_request' }}
if: ${{ steps.file_change.outputs.container_folder != 'true' }}
run: |
gh run cancel ${{ github.run_id }}
gh run watch ${{ github.run_id }}
Expand Down

0 comments on commit 094f2a6

Please sign in to comment.