UnityPlugin: Release 2.23.1 #62
Workflow file for this run
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
| on: | |
| push: | |
| tags: | |
| - v*.*.* | |
| jobs: | |
| release-on-tag: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set ENV | |
| run: echo SHORT=${GITHUB_REF_NAME%.*} >> $GITHUB_ENV && echo "VERSION=${GITHUB_REF_NAME#v}" >> $GITHUB_ENV | |
| - uses: ncipollo/release-action@v1 | |
| with: | |
| draft: true | |
| name: "Unity Plugin: ${{ github.ref_name }}" | |
| body: "PopcornFX Plugin ${{ github.ref_name }} for Unity Software\n\n | |
| You can download the PopcornFX Editor and find the full changelog here:\n | |
| https://wiki.popcornfx.com/index.php?title=PK-Editor_${{ env.SHORT }}#Changelog_${{ env.VERSION }}" |