From 4f75d2f20dde01ceb1eb6727528538323be01874 Mon Sep 17 00:00:00 2001 From: Ty Lamontagne Date: Thu, 2 Jan 2025 16:35:20 -0500 Subject: [PATCH] CI: Dry run flathub stable push --- .github/workflows/cron_publish_flatpak.yml | 4 ++-- .github/workflows/linux_build_flatpak.yml | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cron_publish_flatpak.yml b/.github/workflows/cron_publish_flatpak.yml index c6a9aeb4b8602..081c81625fb89 100644 --- a/.github/workflows/cron_publish_flatpak.yml +++ b/.github/workflows/cron_publish_flatpak.yml @@ -42,8 +42,8 @@ jobs: artifactPrefixName: "PCSX2-linux-Qt-x64-flatpak" compiler: clang cmakeflags: "" - publish: true + publish: false fetchTags: true - stableBuild: false + stableBuild: true secrets: inherit diff --git a/.github/workflows/linux_build_flatpak.yml b/.github/workflows/linux_build_flatpak.yml index 50b1062db9b4b..9fc8465f93f73 100644 --- a/.github/workflows/linux_build_flatpak.yml +++ b/.github/workflows/linux_build_flatpak.yml @@ -64,8 +64,10 @@ jobs: # it doesn't fetch tags, therefore we don't get a version. So grab them manually. # actions/checkout elides tags, fetch them primarily for releases - name: Fetch tags - if: ${{ inputs.fetchTags }} - run: git fetch --tags --no-recurse-submodules + # if: ${{ inputs.fetchTags }} + run: | + git checkout 2d5faa627ff54f3fb2a69a43286181bee071a1c3 + git fetch --tags --no-recurse-submodules - name: Add stable release identifier file if: ${{ inputs.stableBuild == true || inputs.stableBuild == 'true' }}