softprops / action-gh-release

📦 :octocat: GitHub Action for creating GitHub Releases

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error: Cannot read properties of undefined (reading 'data')

qianbinbin opened this issue · comments

Hello,

A few days ago my scheduled action failed with Error: Cannot read properties of undefined (reading 'data'), for details see https://github.com/qianbinbin/fdroid-priv-ext/actions/runs/5779647317/job/15662229381

It doesn't reproduce for now, and before that the action ran for months smoothly.

My simple script:

      - name: Release
        id: release
        if: ${{ steps.create.outputs.VERSION != '' }}
        uses: softprops/action-gh-release@v1
        with:
          tag_name: ${{ steps.create.outputs.VERSION }}
          body: ${{ steps.create.outputs.CHANGELOG }}
          files: build/*

The full version is here.

Any help is appreciated.