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 1b3291a commit 16577c1Copy full SHA for 16577c1
.github/workflows/nightly-docker-build-publish.yml
@@ -27,11 +27,20 @@ jobs:
27
run: |
28
examples=($(echo ${EXAMPLES} | tr ',' ' '))
29
examples_json=$(printf '%s\n' "${examples[@]}" | sort -u | jq -R '.' | jq -sc '.')
30
+ echo "$examples_json"
31
echo "examples_json=$examples_json" >> $GITHUB_OUTPUT
32
echo "EXAMPLES=$EXAMPLES" >> $GITHUB_OUTPUT
33
echo "TAG=$TAG" >> $GITHUB_OUTPUT
34
echo "PUBLISH_TAGS=$PUBLISH_TAGS" >> $GITHUB_OUTPUT
35
36
+ check:
37
+ runs-on: ubuntu-latest
38
+ steps:
39
+ - name: Check
40
+ run: |
41
+ echo "EXAMPLES: ${{ env.EXAMPLES }}"
42
+ echo "examples_json: ${{ env.examples_json }}"
43
+
44
build-and-test:
45
needs: get-build-matrix
46
if: ${{ fromJSON(needs.get-build-matrix.outputs.examples_json).length != 0 }}
0 commit comments