-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into snyk-upgrade-c172c94c99d023257905b427d164cb03
- Loading branch information
Showing
49 changed files
with
834 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: promote | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
environment: | ||
required: true | ||
type: string | ||
module: | ||
required: true | ||
type: string | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
required: true | ||
type: choice | ||
options: | ||
- sbx | ||
- prod | ||
- prod_test | ||
module: | ||
required: true | ||
type: choice | ||
options: | ||
- api | ||
- worker | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
promote: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | ||
- uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2 | ||
with: | ||
aws-region: ${{ vars.AWS_REGION }} | ||
role-to-assume: arn:aws:iam::${{ secrets.MGMT_ACCOUNT_ID }}:role/delegatedadmin/developer/ab2d-mgmt-github-actions | ||
- name: Retag images in ECR | ||
env: | ||
DEPLOYMENT_ENV: ${{ vars[format('{0}_DEPLOYMENT_ENV', inputs.environment)] }} | ||
ECR_REPO_DOMAIN: ${{ secrets.MGMT_ACCOUNT_ID }}.dkr.ecr.${{ vars.AWS_REGION }}.amazonaws.com | ||
ECR_REPO: ab2d_${{ inputs.module }} | ||
run: | | ||
SHA_SHORT="$(git rev-parse --short HEAD)" | ||
TOKEN="$(aws ecr get-authorization-token --output text --query 'authorizationData[].authorizationToken')" | ||
CONTENT_TYPE="application/vnd.docker.distribution.manifest.v2+json" | ||
echo "Getting the manifest of the image tagged main-$SHA_SHORT" | ||
MANIFEST="$(curl -sS -H "Authorization: Basic $TOKEN" -H "Accept: $CONTENT_TYPE" "https://$ECR_REPO_DOMAIN/v2/$ECR_REPO/manifests/main-$SHA_SHORT")" | ||
SHA_TAG="ab2d-$DEPLOYMENT_ENV-$SHA_SHORT" | ||
echo "Adding the $SHA_TAG tag to main-$SHA_SHORT image" | ||
curl -sS -X PUT -H "Authorization: Basic $TOKEN" -H "Content-Type: $CONTENT_TYPE" -d "$MANIFEST" "https://$ECR_REPO_DOMAIN/v2/$ECR_REPO/manifests/$SHA_TAG" | ||
LATEST_TAG="ab2d-$DEPLOYMENT_ENV-latest" | ||
echo "Adding the $LATEST_TAG tag to main-$SHA_SHORT image" | ||
curl -sS -X PUT -H "Authorization: Basic $TOKEN" -H "Content-Type: $CONTENT_TYPE" -d "$MANIFEST" "https://$ECR_REPO_DOMAIN/v2/$ECR_REPO/manifests/$LATEST_TAG" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: push to main | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-api: | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
environment: test | ||
module: api | ||
secrets: inherit | ||
build-worker: | ||
uses: ./.github/workflows/build.yml | ||
with: | ||
environment: test | ||
module: worker | ||
secrets: inherit | ||
deploy-api: | ||
needs: build-api | ||
permissions: | ||
contents: read | ||
id-token: write | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: test | ||
module: api | ||
secrets: inherit | ||
deploy-worker: | ||
needs: build-worker | ||
permissions: | ||
contents: read | ||
id-token: write | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: test | ||
module: worker | ||
secrets: inherit | ||
e2e-test: | ||
needs: [deploy-api, deploy-worker] | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
environment: test | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: release | ||
|
||
on: | ||
release: | ||
types: [released] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
# Promote and Deploy to prod-test, which only includes worker | ||
promote-prod-test-worker: | ||
uses: ./.github/workflows/promote.yml | ||
with: | ||
environment: prod_test | ||
module: worker | ||
secrets: inherit | ||
|
||
deploy-prod-test-worker: | ||
needs: promote-prod-test-worker | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: prod_test | ||
module: worker | ||
secrets: inherit | ||
|
||
# Promote and Deploy to prod | ||
promote-prod-api: | ||
uses: ./.github/workflows/promote.yml | ||
with: | ||
environment: prod | ||
module: api | ||
secrets: inherit | ||
|
||
promote-prod-worker: | ||
uses: ./.github/workflows/promote.yml | ||
with: | ||
environment: prod | ||
module: worker | ||
secrets: inherit | ||
|
||
deploy-prod-api: | ||
needs: promote-prod-api | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: prod | ||
module: api | ||
secrets: inherit | ||
|
||
deploy-prod-worker: | ||
needs: promote-prod-worker | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: prod | ||
module: worker | ||
secrets: inherit | ||
|
||
# Promote and Deploy to sandbox | ||
promote-sbx-api: | ||
uses: ./.github/workflows/promote.yml | ||
with: | ||
environment: sbx | ||
module: api | ||
secrets: inherit | ||
|
||
promote-sbx-worker: | ||
uses: ./.github/workflows/promote.yml | ||
with: | ||
environment: sbx | ||
module: worker | ||
secrets: inherit | ||
|
||
deploy-sbx-api: | ||
needs: promote-sbx-api | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: sbx | ||
module: api | ||
secrets: inherit | ||
|
||
deploy-sbx-worker: | ||
needs: promote-sbx-worker | ||
uses: ./.github/workflows/deploy.yml | ||
with: | ||
environment: sbx | ||
module: worker | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.