grain icon indicating copy to clipboard operation
grain copied to clipboard

Investigate release action issue

Open ospencer opened this issue 10 months ago • 0 comments

Got this cryptic error during the last release:

.github/workflows/release.yml (Line: 36, Col: 12): could not get operand for index access: Error from function 'fromJSON': empty input

It refers to the preview job:

  build-preview:
    name: Build preview binaries
    needs: [release-please]
    if: ${{ needs.release-please.outputs.release-pr }}
    uses: ./.github/workflows/build-js.yml
    with:
      os: ubuntu-latest
      ref: ${{ fromJSON(needs.release-please.outputs.release-pr).headBranchName }}

Not sure what's up, but thankfully this job wasn't in the path of the release.

ospencer avatar Apr 27 '25 21:04 ospencer