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;