mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-22 10:36:06 +01:00
25 lines
613 B
YAML
25 lines
613 B
YAML
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'
|