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 65f145d commit 1bb4aaaCopy full SHA for 1bb4aaa
.github/actions/upload/action.yml
@@ -9,6 +9,7 @@ runs:
9
- name: Build
10
uses: ./.github/actions/build
11
- name: generate tar
12
+ shell: bash
13
run: |
14
set -Eeu
15
./pin.sh
src/bindings/scripts/download-bindings.sh
@@ -4,7 +4,10 @@ set -e
4
(which gh > /dev/null 2>&1) || (echo "Please install gh the github cli tool: https://github.com/cli/cli#installation" && exit 1)
5
6
REV=${REV:=$(git rev-parse HEAD)}
7
-RUN_ID=$(gh run list --commit "$REV" --workflow 'remote_bindings.yml' --json databaseId --jq '.[0].databaseId')
+RUN_ID=$( \
8
+ gh run list --commit $REV --json name,databaseId | \
+ jq -r '.[] | select(.name == "Checks" or .name == "Build and upload bindings") | .databaseId' \
+ )
if [ -z "$RUN_ID" ]
then
0 commit comments