fix(ci): double trigger for nightly

This commit is contained in:
Elian Doran 2025-03-24 09:00:30 +02:00
parent ad8b5c7c9d
commit bfdb3e2add
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View File

@ -8,7 +8,6 @@ on:
pull_request: pull_request:
paths: paths:
- .github/actions/build-electron/* - .github/actions/build-electron/*
push:
env: env:
GITHUB_UPLOAD_URL: https://uploads.github.com/repos/TriliumNext/Notes/releases/179589950/assets{?name,label} GITHUB_UPLOAD_URL: https://uploads.github.com/repos/TriliumNext/Notes/releases/179589950/assets{?name,label}
GITHUB_RELEASE_ID: 179589950 GITHUB_RELEASE_ID: 179589950

View File

@ -7,7 +7,7 @@ const BIN_PATH = path.normalize("./bin/electron-forge");
const extraResourcesForPlatform = getExtraResourcesForPlatform(); const extraResourcesForPlatform = getExtraResourcesForPlatform();
const baseLinuxMakerConfigOptions = { const baseLinuxMakerConfigOptions = {
icon: "./images/app-icons/png/128x128.png", icon: "./images/app-icons/png/128x128.png",
desktopTemplate: path.resolve(path.join(BIN_PATH, desktop.ejs)), desktopTemplate: path.resolve(path.join(BIN_PATH, "desktop.ejs")),
categories: ["Office", "Utility"] categories: ["Office", "Utility"]
}; };