From 3767eeee5cbf3dedf507c27a1c2e6e084bd4fc51 Mon Sep 17 00:00:00 2001 From: Ming Di Leom <2809763-curben@users.noreply.gitlab.com> Date: Sun, 22 Jun 2025 10:12:59 +0000 Subject: [PATCH] ci: switch back from bun to nodejs bun does not support FileHandle.readLines yet This reverts commit faf7cd9d1edd289ca87030e416993ea6d72a4063. --- .github/workflows/pages.yml | 4 ++-- .gitlab-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 6008c6b..a9cd032 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -8,7 +8,7 @@ on: jobs: pages: runs-on: ubuntu-latest - container: oven/bun:alpine + container: node:lts-alpine steps: - uses: actions/checkout@v4 - name: Install Dependencies @@ -55,6 +55,6 @@ jobs: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} if: ${{ env.NETLIFY_SITE_ID != 0 && env.GITLAB_STATUS == 'down' }} run: | - bun install -g netlify-cli + npm install netlify-cli -g netlify --telemetry-disable netlify deploy --dir=public --prod diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 05a4cc1..0ce3ccd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: oven/bun:alpine +image: node:lts-alpine include: - template: Security/Secret-Detection.gitlab-ci.yml @@ -62,7 +62,7 @@ netlify: - build_job before_script: - - bun install -g netlify-cli + - npm install netlify-cli -g - netlify --telemetry-disable script: