2023-08-22 15:35:10 +02:00
|
|
|
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
|
2023-08-22 15:38:23 +02:00
|
|
|
version_bump: prlabel
|
2023-08-22 15:35:10 +02:00
|
|
|
|
|
|
|
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'
|
2023-08-24 14:44:39 +02:00
|
|
|
upload_hangar: 'false'
|