We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4a4f9a commit 45ae646Copy full SHA for 45ae646
.github/workflows/_push.yaml
@@ -63,7 +63,7 @@ on:
63
type: string
64
65
CATALOG_DIR_PATH:
66
- description: OPM CLI version to use
+ description: Catalog directory path
67
default: catalog
68
required: false
69
@@ -116,7 +116,7 @@ jobs:
116
- name: Check if Catalog release is needed
117
id: check-catalog-changes
118
run: |
119
- if git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -q '^${{CATALOG_DIR_PATH}}/'; then
+ if git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -q '^${{inputs.CATALOG_DIR_PATH}}/'; then
120
echo "should_release_catalog=true" >> $GITHUB_ENV
121
else
122
echo "should_release_catalog=false" >> $GITHUB_ENV
0 commit comments