Merge pull request 'Fix production build, bad reference in staging build' (#11) from website-content-updates into main
All checks were successful
Build and Test - Production / test (push) Successful in 4m27s
Build and Test - Production / build_and_push (push) Successful in 4m59s
Build and Test - Production / deploy_production (push) Successful in 2s

Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
2025-12-05 20:15:03 +00:00
2 changed files with 7 additions and 5 deletions

View File

@@ -12,10 +12,12 @@ jobs:
project_version: ${{ steps.project_metadata.outputs.PROJECT_VERSION }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Node Environment
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: ">=22.20"
- name: Setup Project Dependencies
run: |
@@ -48,7 +50,7 @@ jobs:
needs: test
steps:
- name: Checkout caperren-com Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
path: caperren-com
@@ -63,7 +65,7 @@ jobs:
uses: docker/setup-buildx-action@v3
- name: Build and Push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: caperren-com
push: true

View File

@@ -72,7 +72,7 @@ jobs:
tags: |
gitea.perren.cloud/caperren/caperren-com:latest-staging
build-args: |
REPO_VERSION_HASH=${{ needs.determine_version.outputs.repo_version_hash }}
REPO_VERSION_HASH=${{ needs.test.outputs.repo_version_hash }}
BUILD_ENVIRONMENT=staging
deploy_staging: