From 332bf71a7be4649cb4144d3f9a49c5feb77ce0b0 Mon Sep 17 00:00:00 2001 From: Gordon MacPherson Date: Thu, 18 Apr 2024 23:51:21 +0100 Subject: [PATCH] remove extra space and test deploy --- .github/workflows/deployment-pr.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deployment-pr.yml b/.github/workflows/deployment-pr.yml index 4d5777de..6c2943b5 100644 --- a/.github/workflows/deployment-pr.yml +++ b/.github/workflows/deployment-pr.yml @@ -36,7 +36,7 @@ jobs: game-export-preset: Windows game-binary-name: The Mirror Dev.exe bucket-name: no-bucket - os: ${{ github.event.repository.name != 'the-mirror' && fromJSON('[ "self-hosted", "Windows"]') || 'windows-latest' }} + os: ${{ github.event.repository.name == 'the-mirror' && fromJSON('["self-hosted", "Windows"]') || 'windows-latest' }} # TODO: This will be dynamic in future and we can't do that immediately as we have to focus on the deployment side. editor-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/MirrorGodotEditorWindows.exe template-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/windows_release_x86_64.exe @@ -65,7 +65,7 @@ jobs: game-export-preset: MacOS-themirror-dev game-binary-name: The Mirror Dev.app bucket-name: no-bucket - os: ${{ github.event.repository.name != 'the-mirror' && fromJSON('[ "self-hosted", "MacOS"]') || 'macos-latest' }} + os: ${{ github.event.repository.name == 'the-mirror' && fromJSON('["self-hosted", "MacOS"]') || 'macos-latest' }} # TODO: This will be dynamic in future and we can't do that immediately as we have to focus on the deployment side. editor-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/MirrorGodotEditorMac.app.zip template-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/macos_template.app.zip @@ -92,7 +92,7 @@ jobs: game-export-preset: Linux game-binary-name: The Mirror Dev.x86_64 bucket-name: no-bucket - os: ${{ github.event.repository.name != 'the-mirror' && fromJSON('[ "self-hosted", "Linux"]') || 'ubuntu-20.04' }} + os: ${{ github.event.repository.name == 'the-mirror' && fromJSON('["self-hosted", "Linux"]') || 'ubuntu-20.04' }} # TODO: This will be dynamic in future and we can't do that immediately as we have to focus on the deployment side. editor-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/MirrorGodotEditorLinux.x86_64 template-download-url: https://storage.googleapis.com/mirror_native_client_builds/Engine/4309e8e8/linux_release.x86_64 \ No newline at end of file