mirror of
https://github.com/Multiverse/Multiverse-Core.git
synced 2024-11-28 21:48:27 +01:00
24 lines
603 B
YAML
24 lines
603 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: patch # change to 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'
|