From 09918041f8a60a5b32dc9e07b69960f05a9dc716 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Thu, 14 Aug 2025 22:22:48 +0200 Subject: [PATCH] build: Properly substitute ${SNAP_GRADE} env var in snap manifest --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b60f70ff7..39d45fca5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1124,7 +1124,7 @@ jobs: - name: 📜 Move snap directory to root run: | mkdir -p ./snap - envsubst '${IMHEX_VERSION},${CCACHE}' < ./dist/snap/snapcraft.yaml > ./snap/snapcraft.yaml + envsubst '${IMHEX_VERSION},${SNAP_GRADE},${CCACHE}' < ./dist/snap/snapcraft.yaml > ./snap/snapcraft.yaml - name: 📜 Setup ccache uses: hendrikmuhs/ccache-action@v1