Fix production build, bad reference in staging build
All checks were successful
Build and Test - Staging / test (pull_request) Successful in 5m27s
Build and Test - Staging / build_and_push (pull_request) Successful in 6m44s
Build and Test - Staging / deploy_staging (pull_request) Successful in 2s

This commit is contained in:
2025-12-05 11:55:29 -08:00
parent 4847e9f172
commit f9a837f0fa
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: