reverting to app on container app (#21)

This commit was merged in pull request #21.
This commit is contained in:
2025-05-01 19:20:22 -05:00
committed by GitHub
parent 299da631cb
commit c75b3e28da
8 changed files with 105 additions and 156 deletions

View File

@@ -24,20 +24,32 @@ jobs:
needs:
- changes
- build-api
uses: ./.github/workflows/api_deploy.yaml
uses: ./.github/workflows/deploy.yaml
with:
app_name: root-api
environment_name: test
version_number: ${{ github.run_id }}
secrets: inherit
build-deploy-app:
build-app:
if: ${{ needs.changes.outputs.app == 'true' }}
name: build-deploy-app
name: build-app
needs:
- changes
uses: ./.github/workflows/app_build_deploy.yaml
uses: ./.github/workflows/app_build.yaml
with:
environment_name: test
version_number: ${{ github.run_id }}
secrets: inherit
deploy-app:
name: deploy-app
needs:
- changes
- build-app
uses: ./.github/workflows/deploy.yaml
with:
app_name: root-app
environment_name: test
version_number: ${{ github.run_id }}
secrets: inherit