Skip to content

Commit

Permalink
Prints GITHUB_OUTPUT for debugging.
Browse files Browse the repository at this point in the history
  • Loading branch information
tommie committed Dec 25, 2023
1 parent 20f0fd5 commit 0becef3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/v8upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ jobs:
upgrade:
name: Upgrade V8
runs-on: ubuntu-latest
outputs:
latest_v8_hash: ${{ steps.check_v8.latest_v8_hash }}
has_upgrade: ${{ steps.check_v8.has_upgrade }}

steps:
- name: Install Utilities
run: |
Expand All @@ -32,6 +28,7 @@ jobs:
wget -q -O- "https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Linux&num=1&offset=0" | jq -r ".[0].hashes.v8" >deps/latest_v8_hash
echo "latest_v8_hash=$(<deps/latest_v8_hash)" >>"$GITHUB_OUTPUT"
echo "has_upgrade=$(git status --porcelain | grep -q . && echo y || echo n)" >>"$GITHUB_OUTPUT"
cat "$GITHUB_OUTPUT"
- name: Create PR
if: ${{ steps.check_v8.has_upgrade }} == 'y'
Expand Down

0 comments on commit 0becef3

Please sign in to comment.