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 72f279a commit e8c4b9cCopy full SHA for e8c4b9c
.github/workflows/testpr.yml
@@ -101,10 +101,14 @@ jobs:
101
id: newrecipecheck
102
shell: bash -l {0}
103
run: |
104
+ if [ ! -d recipes ] || [ -z "$(ls -A recipes)" ]; then
105
+ echo "RECIPE_CREATED=0" >> $GITHUB_OUTPUT
106
+ else
107
+ echo "RECIPE_CREATED=1" >> $GITHUB_OUTPUT
108
+ fi
109
# continue on error
110
set +e
111
test ! -d recipes
- echo "::set-output name=RECIPE_CREATED::${?}"
112
- name: Build recipes for linux-64
113
114
if: steps.newrecipecheck.outputs.RECIPE_CREATED == 1 && matrix.platform == 'linux-64'
0 commit comments