From 9e3f8b700f9fb75a17bc9979b06aad6da16d40c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Hidalgo?= Date: Thu, 17 Oct 2024 10:55:39 +0100 Subject: [PATCH] Check older node version --- .github/workflows/deploy-page.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy-page.yml b/.github/workflows/deploy-page.yml index e723dc8..c88e959 100644 --- a/.github/workflows/deploy-page.yml +++ b/.github/workflows/deploy-page.yml @@ -11,7 +11,7 @@ permissions: id-token: write jobs: - build: + Build_webpage: runs-on: ubuntu-latest steps: - name: Checkout Repository @@ -20,7 +20,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '14' # Sets up Node.js version 14 + node-version: '12' # Sets up Node.js version 14 - name: Cache dependencies uses: actions/cache@v4 @@ -47,12 +47,12 @@ jobs: # Deployment job - deploy: + Deploy_webpage: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest - needs: build + needs: Build_webpage steps: - name: Deploy to GitHub Pages id: deployment