From 172c522a73369264fa105c26927a15b6a1f2f095 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Wed, 30 Jun 2021 20:20:18 +1000 Subject: [PATCH] CI: Fix incorrect auto-updater arm64 filename --- .github/workflows/rolling-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rolling-release.yml b/.github/workflows/rolling-release.yml index 302b36dfa..ae01283df 100644 --- a/.github/workflows/rolling-release.yml +++ b/.github/workflows/rolling-release.yml @@ -94,7 +94,7 @@ jobs: shell: cmd run: | echo #pragma once > src/scmversion/tag.h - echo #define SCM_RELEASE_ASSET "duckstation-windows-x64-release.zip" >> src/scmversion/tag.h + echo #define SCM_RELEASE_ASSET "duckstation-windows-arm64-release.zip" >> src/scmversion/tag.h echo #define SCM_RELEASE_TAGS {"latest", "preview"} >> src/scmversion/tag.h echo #define SCM_RELEASE_TAG "preview" >> src/scmversion/tag.h @@ -104,7 +104,7 @@ jobs: shell: cmd run: | echo #pragma once > src/scmversion/tag.h - echo #define SCM_RELEASE_ASSET "duckstation-windows-x64-release.zip" >> src/scmversion/tag.h + echo #define SCM_RELEASE_ASSET "duckstation-windows-arm64-release.zip" >> src/scmversion/tag.h echo #define SCM_RELEASE_TAGS {"latest", "preview"} >> src/scmversion/tag.h echo #define SCM_RELEASE_TAG "latest" >> src/scmversion/tag.h