Merge pull request #609 from xiaohuang2004/main #31
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: 'Main: Prerelease' | |
| on: | |
| push: | |
| branches: [main] | |
| jobs: | |
| github_release_on_push: | |
| uses: ./.github/workflows/call.github_release.yml | |
| secrets: inherit | |
| with: | |
| release_mode: prerelease | |
| version_bump: prlabel | |
| platform_uploads_on_push: | |
| needs: github_release_on_push | |
| if: needs.github_release_on_push.outputs.release_created == 'true' | |
| uses: ./.github/workflows/call.platform_uploads.yml | |
| secrets: inherit | |
| with: | |
| target_tag: ${{ needs.github_release_on_push.outputs.tag_name }} | |
| upload_modrinth: 'true' | |
| upload_dbo: 'false' | |
| upload_hangar: 'false' |