Skip to content

Commit efd7f4b

Browse files
committed
update changes filter
1 parent 0ace3ae commit efd7f4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/octoprint-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ jobs:
1212
changes:
1313
runs-on: ubuntu-latest
1414
outputs:
15-
noop: ${{ steps.filter.outputs.noop }}
15+
deploy: ${{ steps.filter.outputs.deployable }}
1616
steps:
1717
- uses: actions/checkout@v2
1818
- uses: dorny/[email protected]
1919
if: ${{ github.event_name == 'push'}}
2020
id: filter
2121
with:
2222
filters: |
23-
image:
23+
deployable:
2424
- 'root/**'
2525
- Dockerfile
2626
2727
release:
2828
runs-on: ubuntu-latest
2929
needs: changes
30-
if: ${{ github.event_name == 'repository_dispatch' || needs.changes.outputs.image == 'true'}}
30+
if: ${{ github.event_name == 'repository_dispatch' || needs.changes.outputs.deploy == 'true'}}
3131
strategy:
3232
matrix:
3333
tags: ['latest','%X%', '%X.Y%', '%X.Y.Z%']

0 commit comments

Comments
 (0)