update build script
Some checks failed
/ Auto-Build-App (push) Failing after 1m41s

This commit is contained in:
pietru2004 2024-11-05 09:07:17 +01:00
parent 76252f01b1
commit 1d8a3404ee
2 changed files with 2 additions and 2 deletions

View file

@ -48,7 +48,7 @@ jobs:
npm install -g bun
- name: Run publish script
run: |
bun publish.mjs
bun publish-dev.mjs
- run: echo "🍏 This job's status is ${{ job.status }}."

View file

@ -101,7 +101,7 @@ async function loadConfigData() {
const releaseUrl = releasePath.startsWith("http")
? releasePath
: `${repoUrl}${releasePath}`;
const changelog = await getVersionChangelog(releaseUrl);
const changelog = "Automatic dev build...";//await getVersionChangelog(releaseUrl);
// Files
const primaryFilePath = config.files?.primary;