fix: wrong links

This commit is contained in:
Joscha Maier
2024-09-26 14:08:24 +02:00
parent 863236d478
commit fbf7e826d0
2 changed files with 2 additions and 2 deletions

View File

@ -79,6 +79,6 @@ create-release:
url: "${MANIFEST_RELEASE_URL}"
filepath: "/${MANIFEST}"
- name: "$ZIPFILE"
url: "${ZIPFILE_PERMALINK_URL}"
url: "${ZIPFILE_RELEASE_URL}"
filepath: "/${ZIPFILE}"

View File

@ -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;