Skip to content

Commit

Permalink
fix: gh release staging debug (#9322)
Browse files Browse the repository at this point in the history
* fix: longer timeout for unplayable job

Signed-off-by: Matt Krick <matt.krick@gmail.com>

* fix: exit condition debug

Signed-off-by: Matt Krick <matt.krick@gmail.com>

---------

Signed-off-by: Matt Krick <matt.krick@gmail.com>
  • Loading branch information
mattkrick committed Jan 10, 2024
1 parent 1eeb17b commit 383c722
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release-to-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ jobs:
echo $RES
JOB_ID_DONE=$(echo $RES | jq .id)
echo $JOB_ID_DONE
[ -z "$JOB_ID_DONE" ] && exit 1
[ -z "$JOB_ID_DONE" ] && echo null || echo "not null"
[ -z "$JOB_ID_DONE" ] && exit 1 || exit 0
- name: Open PR to Push to Prod
env:
GH_TOKEN: ${{ github.token }}
Expand Down

0 comments on commit 383c722

Please sign in to comment.