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 aff38ba commit 61760b1Copy full SHA for 61760b1
hack/recipes.sh
@@ -1,7 +1,9 @@
1
#!/bin/bash -eu
2
set -o pipefail
3
4
-gh run download --pattern '*.Dockerfile'
+branch=$(git rev-parse --abbrev-ref HEAD 2>/dev/null)
5
+runID=$(gh run list --branch "$branch" --limit 1 --workflow CLIs --json databaseId --jq '.[].databaseId')
6
+gh run download "$runID" --pattern '*.Dockerfile'
7
8
for f in *.Dockerfile/*.Dockerfile; do
9
echo $f
0 commit comments