Skip to content

Commit

Permalink
renames sandbox step and reorders steps
Browse files Browse the repository at this point in the history
  • Loading branch information
JackSpagnoliNHS committed Apr 18, 2024
1 parent bebc83e commit 75c2c54
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
PROD_CLOUD_FORMATION_CHECK_VERSION_ROLE: ${{ secrets.PROD_CLOUD_FORMATION_CHECK_VERSION_ROLE }}
DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE }}

release_sandbox_dev:
release_dev_sandbox:
needs: [tag_release, package_code, get_commit_id]
uses: ./.github/workflows/sam_release_code.yml
with:
Expand All @@ -152,7 +152,7 @@ jobs:
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}

release_ref:
needs: [tag_release, release_dev, package_code, get_commit_id]
needs: [tag_release, release_dev, release_dev_sandbox, package_code, get_commit_id]
uses: ./.github/workflows/sam_release_code.yml
with:
ARTIFACT_BUCKET_PREFIX: ${{needs.tag_release.outputs.version_tag}}
Expand All @@ -170,7 +170,7 @@ jobs:
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.REF_CLOUD_FORMATION_DEPLOY_ROLE }}

release_qa:
needs: [tag_release, release_dev, package_code, get_commit_id]
needs: [tag_release, release_dev, release_dev_sandbox, package_code, get_commit_id]
uses: ./.github/workflows/sam_release_code.yml
with:
ARTIFACT_BUCKET_PREFIX: ${{needs.tag_release.outputs.version_tag}}
Expand Down Expand Up @@ -211,8 +211,8 @@ jobs:
PROD_CLOUD_FORMATION_CHECK_VERSION_ROLE: ${{ secrets.PROD_CLOUD_FORMATION_CHECK_VERSION_ROLE }}
DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE }}

release_sandbox_int:
needs: [tag_release, package_code, get_commit_id]
release_int_sandbox:
needs: [tag_release, release_qa, package_code, get_commit_id]
uses: ./.github/workflows/sam_release_code.yml
with:
ARTIFACT_BUCKET_PREFIX: ${{needs.tag_release.outputs.version_tag}}-sandbox
Expand All @@ -229,7 +229,7 @@ jobs:
CLOUD_FORMATION_DEPLOY_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_DEPLOY_ROLE }}

# release_prod:
# needs: [tag_release, release_int, package_code, get_commit_id]
# needs: [tag_release, release_int, release_int_sandbox, package_code, get_commit_id]
# uses: ./.github/workflows/sam_release_code.yml
# with:
# ARTIFACT_BUCKET_PREFIX: ${{needs.tag_release.outputs.version_tag}}
Expand Down

0 comments on commit 75c2c54

Please sign in to comment.