From e482a8989af77a693fc65292b3997c58d94a2cab Mon Sep 17 00:00:00 2001 From: Jhon Date: Thu, 11 Apr 2024 22:10:43 -0500 Subject: [PATCH] Github action3 --- .github/workflows/deploy.yml | 2 +- astro.config.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 92da6f2..badf308 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: uses: withastro/action@v2 with: options: | - package-manager: pnpm@latest # Especifica aquí la versión de pnpm que deseas utilizar. + package-manager: pnpm@latest # También puedes agregar otras opciones aquí si es necesario. # path: . # The root location of your Astro project inside the repository. (optional) # node-version: 20 # The specific version of Node that should be used to build your site. Defaults to 20. (optional) diff --git a/astro.config.mjs b/astro.config.mjs index e4b3d25..e414b0e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -2,7 +2,7 @@ import { defineConfig } from 'astro/config'; const SERVER_PORT = 3000; const LOCALHOST_URL = `http://localhost:${SERVER_PORT}`; -const LIVE_URL = "https://Jhonlz09.github.io.git"; +const LIVE_URL = "https://Jhonlz09.github.io"; const SCRIPT = process.env.npm_lifecycle_script || ""; const isBuild = SCRIPT.includes("astro build");