From 295fd3bcd4cd9e55e73e03e96765ca8c05650f1b Mon Sep 17 00:00:00 2001 From: IvarK Date: Thu, 8 May 2025 19:06:34 +0300 Subject: [PATCH 1/2] Add news ticker from patreon --- src/core/secret-formula/news.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/secret-formula/news.js b/src/core/secret-formula/news.js index 41e28148f1..2662fb0a50 100644 --- a/src/core/secret-formula/news.js +++ b/src/core/secret-formula/news.js @@ -3288,6 +3288,10 @@ export const news = [ id: "p1", text: "Is this a jojo reference?", }, + { + id: "p2", + text: 'Die Zahlen gehen hoooch' + }, /* eslint-disable max-len */ { id: "ai1", From 7b29fa1c0771b93a8bf8198ca04886167ecffc0b Mon Sep 17 00:00:00 2001 From: IvarK Date: Thu, 8 May 2025 19:12:17 +0300 Subject: [PATCH 2/2] attempting to fix pipelines (https://github.com/actions/setup-node/issues/1275) --- .github/workflows/deploy-master.yml | 7 ++++--- .github/workflows/deploy-release.yml | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy-master.yml b/.github/workflows/deploy-master.yml index ac50bbf0b1..09b5b19521 100644 --- a/.github/workflows/deploy-master.yml +++ b/.github/workflows/deploy-master.yml @@ -19,10 +19,10 @@ jobs: - uses: actions/checkout@v2 with: lfs: true - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '14' - cache: 'npm' + node-version: "14" + cache: "npm" - run: npm ci - run: npm run build:master - uses: JamesIves/github-pages-deploy-action@v4 @@ -30,3 +30,4 @@ jobs: branch: gh-pages folder: dist single-commit: true + diff --git a/.github/workflows/deploy-release.yml b/.github/workflows/deploy-release.yml index 160c3ae764..36d9ca5179 100644 --- a/.github/workflows/deploy-release.yml +++ b/.github/workflows/deploy-release.yml @@ -19,10 +19,10 @@ jobs: - uses: actions/checkout@v2 with: lfs: true - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: - node-version: '14' - cache: 'npm' + node-version: "14" + cache: "npm" - run: npm ci - run: npm run build:release - uses: JamesIves/github-pages-deploy-action@v4 @@ -32,3 +32,4 @@ jobs: branch: master folder: dist single-commit: true +