Skip to content

Commit

Permalink
Remove dev paas env from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johnake committed Oct 11, 2023
1 parent da1e41f commit 8e54cc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
environment: [dev, test, preprod]
environment: [test, preprod]
environment:
name: ${{ matrix.environment }}
url: ${{ steps.deploy.outputs.environment_url }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/database-copy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Restore DB
strategy:
matrix:
environment: [dev, test, preprod, production]
environment: [test, preprod, production]
max-parallel: 1
uses: ./.github/workflows/restore-paas-db-to-aks.yml
with:
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@ on:
workflow_dispatch:
inputs:
environment:
description: "Deploy environment ( dev, test, preprod or production )"
description: "Deploy environment ( test, preprod or production )"
required: true
default: dev
default: test
type: choice
options:
- dev
- test
- preprod
- production
Expand Down

0 comments on commit 8e54cc1

Please sign in to comment.