Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release(0.66.3): merge to dev #1146

Merged
merged 3 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/aws_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,7 @@ jobs:
- name: Build and push image to ECR
uses: docker/build-push-action@v4
with:
provenance: false
push: true
sbom: false
tags: ${{ steps.login-ecr.outputs.registry }}/${{ inputs.ecr-repository }}:${{ github.sha }}

deploy:
Expand All @@ -111,12 +109,6 @@ jobs:
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1

- name: Build and push image to ECR
uses: docker/build-push-action@v4
with:
push: true
tags: ${{ steps.login-ecr.outputs.registry }}/${{ inputs.ecr-repository }}:${{ github.sha }}

- name: Replace variables in task definition file
run: |
sed -i 's/<AWS_ACCOUNT_ID>/${{ secrets.AWS_ACCOUNT_ID }}/g' ${{ inputs.task-definition-path }}
Expand Down
21 changes: 3 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -184,23 +184,8 @@ jobs:
# NOTE: Not combining with above workflow to allow parallel execution
deploy_ecs:
name: Build and deploy to ECS
runs-on: ubuntu-latest
needs: [gatekeep]
if: needs.gatekeep.outputs.proceed == 'true'
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Cache Node.js modules
uses: actions/cache@v2
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Deploy to ECS
uses: ./.github/workflows/deploy_prod.yml
uses: ./.github/workflows/deploy_prod.yml
secrets: inherit

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.66.3](https://github.com/isomerpages/isomercms-backend/compare/v0.66.2...v0.66.3)

- fix(ci): inline prod deploy [`c7e195f`](https://github.com/isomerpages/isomercms-backend/commit/c7e195f5994f5e60b48996cf49760a68d39299a4)

#### [v0.66.2](https://github.com/isomerpages/isomercms-backend/compare/v0.66.1...v0.66.2)

> 19 February 2024

- fix(workflow-:(): add in checkout flow [`f33aca6`](https://github.com/isomerpages/isomercms-backend/commit/f33aca6973f558e14708a572210fa640fab87867)

#### [v0.66.1](https://github.com/isomerpages/isomercms-backend/compare/v0.66.0...v0.66.1)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "isomercms",
"version": "0.66.2",
"version": "0.66.3",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand Down
Loading