#5 - No es necesario cambiar la variable ASTRO_SITE por SITE_URL
All checks were successful
CodyOps Core Builder / build-conteiner (pull_request) Successful in 2m56s

This commit is contained in:
Luciano Giacchetta 2025-08-07 16:51:34 -03:00
parent a04bdb4ec5
commit b0492b5dd5
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ $(addprefix step-,$(COUNTRIES)):
@echo "Ejecutando step para el país: $(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]')"
export ASTRO_COUNTRY=$(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]') && \
export ASTRO_CURRENCY=${ASTRO_CURRENCY_$(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]')} && \
export SITE_URL=${ASTRO_SITE_$(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]')} && \
export ASTRO_SITE=${ASTRO_SITE_$(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]')} && \
export ASTRO_GTM=${ASTRO_GTM_$(shell echo $(patsubst step-%,%,$@) | tr '[:lower:]' '[:upper:]')} && \
npx astro build --force
podman build --pull=newer --tag $(REGISTRY)/$(IMAGE):$(patsubst step-%,%,$@) .

View File

@ -6,7 +6,7 @@ import mdx from '@astrojs/mdx';
export default defineConfig({
output: 'static',
compressHTML: true,
site: process.env.SITE_URL,
site: process.env.ASTRO_SITE,
trailingSlash: 'always',
integrations: [
markdownIntegration({