fix: Fixed a null ref when trying to draw entity ref array or points … #113
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Semantic Release | |
| on: | |
| push: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| jobs: | |
| release: | |
| name: release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.1.4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Release | |
| id: semantic-release | |
| uses: cycjimmy/semantic-release-action@v4.1.0 | |
| with: | |
| extra_plugins: | | |
| @semantic-release/changelog | |
| @semantic-release/git | |
| branch: master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Print Semantic Release Outputs | |
| run: | | |
| echo "Semantic Release Outputs:" | |
| for key in $(echo "${!SEMANTIC_RELEASE_OUTPUTS[@]}"); do | |
| echo "$key: ${SEMANTIC_RELEASE_OUTPUTS[$key]}" | |
| done | |
| env: | |
| SEMANTIC_RELEASE_OUTPUTS: ${{ toJson(steps.semantic-release.outputs) }} | |
| - name: Discord notification | |
| if: steps.semantic-release.outputs.new_release_published == 'true' | |
| uses: Ilshidur/action-discord@master | |
| env: | |
| DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} | |
| with: | |
| args: ${{ steps.semantic-release.outputs.new_release_notes }} |