items: fix TR1 item underwater SFX test #637
This file contains 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: Publish a pre-release | |
permissions: | |
contents: write | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
package_tr1_multiplatform: | |
name: Build TR1 | |
if: vars.PRERELEASE_ENABLE == 'true' | |
uses: ./.github/workflows/job_build_tr1.yml | |
with: | |
target: 'debug' | |
secrets: inherit | |
package_tr1_mac: | |
name: Build TR1 | |
if: | | |
vars.PRERELEASE_ENABLE == 'true' && | |
vars.MACOS_ENABLE == 'true' | |
uses: ./.github/workflows/job_build_tr1_macos.yml | |
with: | |
target: 'debug' | |
let_mac_fail: true | |
secrets: inherit | |
package_tr2_multiplatform: | |
name: Build TR2 | |
if: vars.PRERELEASE_ENABLE == 'true' | |
uses: ./.github/workflows/job_build_tr2.yml | |
with: | |
target: 'debug' | |
secrets: inherit | |
publish_prerelease: | |
if: vars.PRERELEASE_ENABLE == 'true' | |
name: Create a prerelease | |
needs: | |
- package_tr1_multiplatform | |
- package_tr1_mac | |
- package_tr2_multiplatform | |
with: | |
draft: false | |
prerelease: true | |
tag_name: 'latest' | |
changelog_game_version: 'all' | |
uses: ./.github/workflows/job_release.yml |