From fbf7e826d06b77e29e5890c497a3c834e6b1d01a Mon Sep 17 00:00:00 2001 From: Joscha Maier Date: Thu, 26 Sep 2024 14:08:24 +0200 Subject: [PATCH] fix: wrong links --- .gitlab-ci.yml | 2 +- gulpfile.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1ad4239..e7b426c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -79,6 +79,6 @@ create-release: url: "${MANIFEST_RELEASE_URL}" filepath: "/${MANIFEST}" - name: "$ZIPFILE" - url: "${ZIPFILE_PERMALINK_URL}" + url: "${ZIPFILE_RELEASE_URL}" filepath: "/${ZIPFILE}" diff --git a/gulpfile.js b/gulpfile.js index d219d8d..ed0f27d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -328,7 +328,7 @@ async function publishToFoundry(done) { function updateSystemJson(done) { const ManifestPath = 'system.json'; const Manifest = JSON.parse(fs.readFileSync(ManifestPath)); - const zipUrl = process.env.ZIPFILE_PERMALINK_URL || 'https://gitlab.com/wintermyst/kidsonbrooms/-/raw/master/kidsonbrooms.zip?inline=false'; + const zipUrl = process.env.ZIPFILE_RELEASE_URL || 'https://gitlab.com/wintermyst/kidsonbrooms/-/raw/master/kidsonbrooms.zip?inline=false'; Manifest.download = zipUrl;