Skip to content

Commit

Permalink
work on using debugging latest input
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin committed Nov 18, 2023
1 parent aa3a011 commit f7dc865
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- run: echo "Building prestodb-sandbox:${{ inputs.version }}"
- run: echo "Building prestodb-sandbox=${{ inputs.version }}, latest=${{ inputs.latest }}"
- name: Checkout
uses: actions/checkout@v4
- name: Docker meta
Expand Down
3 changes: 3 additions & 0 deletions scripts/trigger_workflow.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ const imageExists = async (version) => {
Authorization: `Bearer ${ghToken}`
}
});
if (!req.ok) {
console.log(await req.json());
}
return req.ok;
}

Expand Down

0 comments on commit f7dc865

Please sign in to comment.