From 14769a6db29fc70b0f9de72f69312949e10efdcb Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Sat, 11 Nov 2023 01:08:55 -0500 Subject: [PATCH] build with node18 --- .gitea/workflows/publish-blog.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/publish-blog.yml b/.gitea/workflows/publish-blog.yml index 8f150cb..65728be 100644 --- a/.gitea/workflows/publish-blog.yml +++ b/.gitea/workflows/publish-blog.yml @@ -13,18 +13,18 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - uses: https://github.com/actions/setup-node@v3 + - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 - name: Build run: | npm ci npm run build - name: publish to netlify - uses: https://github.com/nwtgck/actions-netlify@v2.0 + uses: nwtgck/actions-netlify@v2.0 with: publish-dir: build production-branch: main env: NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} - NETLIFY_SITE_ID: b3cd7cc2-68be-4467-b3a6-38f1fdfa0cfc \ No newline at end of file + NETLIFY_SITE_ID: b3cd7cc2-68be-4467-b3a6-38f1fdfa0cfc