From cb2c9dece324d30059d497ca49f8536d2c93db88 Mon Sep 17 00:00:00 2001 From: Corwin Perren Date: Wed, 9 Jul 2025 02:32:18 -0700 Subject: [PATCH] Add manual jobs from common --- .gitea/workflows/build-production.yaml | 13 +++++++++++-- .gitea/workflows/build-staging.yaml | 13 +++++++++++-- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build-production.yaml b/.gitea/workflows/build-production.yaml index ba51d70..2c4ff02 100644 --- a/.gitea/workflows/build-production.yaml +++ b/.gitea/workflows/build-production.yaml @@ -4,7 +4,16 @@ on: branches: [main] jobs: - build_test_deploy: + determine_version: uses: ./.gitea/workflows/build-common.yaml with: - build_environment: production \ No newline at end of file + build_environment: production + + build_and_push: + uses: ./.gitea/workflows/build-common.yaml + + test: + uses: ./.gitea/workflows/build-common.yaml + + deploy_production: + uses: ./.gitea/workflows/build-common.yaml \ No newline at end of file diff --git a/.gitea/workflows/build-staging.yaml b/.gitea/workflows/build-staging.yaml index a1328b8..68a38f3 100644 --- a/.gitea/workflows/build-staging.yaml +++ b/.gitea/workflows/build-staging.yaml @@ -4,7 +4,16 @@ on: types: [ opened, synchronize, reopened ] jobs: - build_test_deploy: + determine_version: uses: ./.gitea/workflows/build-common.yaml with: - build_environment: staging \ No newline at end of file + build_environment: staging + + build_and_push: + uses: ./.gitea/workflows/build-common.yaml + + test: + uses: ./.gitea/workflows/build-common.yaml + + deploy_production: + uses: ./.gitea/workflows/build-common.yaml \ No newline at end of file