add api/web
This commit is contained in:
parent
0f0c9b7902
commit
4b50535b2a
2 changed files with 4 additions and 4 deletions
4
.github/workflows/api-container.yml
vendored
4
.github/workflows/api-container.yml
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
|||
run: |
|
||||
version=$(jq -r '.version' api/package.json)
|
||||
echo "current_version=$version" >> "$GITHUB_OUTPUT"
|
||||
nonprod-deploy:
|
||||
nonprod-deploy-api:
|
||||
needs: determine-workflow
|
||||
if: needs.determine-workflow.outputs.workflow_type != 'release'
|
||||
strategy:
|
||||
|
|
@ -71,7 +71,7 @@ jobs:
|
|||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
prod-deploy:
|
||||
prod-deploy-api:
|
||||
needs: determine-workflow
|
||||
if: needs.determine-workflow.outputs.workflow_type == 'release'
|
||||
strategy:
|
||||
|
|
|
|||
4
.github/workflows/web-container.yml
vendored
4
.github/workflows/web-container.yml
vendored
|
|
@ -49,7 +49,7 @@ jobs:
|
|||
run: |
|
||||
version=$(jq -r '.version' web/package.json)
|
||||
echo "current_version=$version" >> "$GITHUB_OUTPUT"
|
||||
nonprod-deploy:
|
||||
nonprod-deploy-web:
|
||||
needs: determine-workflow
|
||||
if: needs.determine-workflow.outputs.workflow_type != 'release'
|
||||
strategy:
|
||||
|
|
@ -71,7 +71,7 @@ jobs:
|
|||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
prod-deploy:
|
||||
prod-deploy-web:
|
||||
needs: determine-workflow
|
||||
if: needs.determine-workflow.outputs.workflow_type == 'release'
|
||||
strategy:
|
||||
|
|
|
|||
Loading…
Reference in a new issue