Skip to content

Commit

Permalink
Merge pull request #1145 from isomerpages/release/0.66.2
Browse files Browse the repository at this point in the history
Release/0.66.2
  • Loading branch information
alexanderleegs authored Feb 19, 2024
2 parents 5f0d0a8 + 612641f commit 7aff0a2
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,19 @@ jobs:
needs: [gatekeep]
if: needs.gatekeep.outputs.proceed == 'true'
steps:
- name: Deploy to ECS
uses: ./.github/workflows/deploy_prod.yml

- 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
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.2](https://github.com/isomerpages/isomercms-backend/compare/v0.66.1...v0.66.2)

- 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)

> 19 February 2024
- fix(deploy-prod): update workflow name [`17e32b1`](https://github.com/isomerpages/isomercms-backend/commit/17e32b17e9e6bfd8292649de08dc1cfc29699e1f)

#### [v0.66.0](https://github.com/isomerpages/isomercms-backend/compare/v0.65.0...v0.66.0)
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.1",
"version": "0.66.2",
"private": true,
"scripts": {
"build": "tsc -p tsconfig.build.json",
Expand Down

0 comments on commit 7aff0a2

Please sign in to comment.