This commit is contained in:
parent
76252f01b1
commit
1d8a3404ee
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ jobs:
|
||||||
npm install -g bun
|
npm install -g bun
|
||||||
- name: Run publish script
|
- name: Run publish script
|
||||||
run: |
|
run: |
|
||||||
bun publish.mjs
|
bun publish-dev.mjs
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -101,7 +101,7 @@ async function loadConfigData() {
|
||||||
const releaseUrl = releasePath.startsWith("http")
|
const releaseUrl = releasePath.startsWith("http")
|
||||||
? releasePath
|
? releasePath
|
||||||
: `${repoUrl}${releasePath}`;
|
: `${repoUrl}${releasePath}`;
|
||||||
const changelog = await getVersionChangelog(releaseUrl);
|
const changelog = "Automatic dev build...";//await getVersionChangelog(releaseUrl);
|
||||||
|
|
||||||
// Files
|
// Files
|
||||||
const primaryFilePath = config.files?.primary;
|
const primaryFilePath = config.files?.primary;
|
Loading…
Reference in a new issue