From 3bd0f2459c9d660ee078c67c7f63b801bc302ddf Mon Sep 17 00:00:00 2001 From: Nicolas Dupont Date: Wed, 22 May 2024 15:17:25 +0200 Subject: [PATCH 1/2] Fix dependencies installation --- roles/engine/tasks/main.yml | 2 +- roles/federated_api/tasks/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/engine/tasks/main.yml b/roles/engine/tasks/main.yml index 77f26cc..d52fe15 100644 --- a/roles/engine/tasks/main.yml +++ b/roles/engine/tasks/main.yml @@ -29,7 +29,7 @@ - name: Install services declarations dependencies ansible.builtin.command: - cmd: npm install ci + cmd: npm ci chdir: '/home/{{ ansible_user }}/{{ ota_engine_declarations_directory }}' tags: - update-declarations diff --git a/roles/federated_api/tasks/main.yml b/roles/federated_api/tasks/main.yml index ffded1c..ee40c2f 100644 --- a/roles/federated_api/tasks/main.yml +++ b/roles/federated_api/tasks/main.yml @@ -35,7 +35,7 @@ - name: Install dependencies ansible.builtin.command: - cmd: npm install ci + cmd: npm ci chdir: '/home/{{ ansible_user }}/{{ ota_federated_api_directory }}' - name: Add .env file From 85c6da3d272af63cfa3c45a015a95c1cc553518f Mon Sep 17 00:00:00 2001 From: Nicolas Dupont Date: Wed, 22 May 2024 15:18:57 +0200 Subject: [PATCH 2/2] Add changelog entry --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c288b3b..727b729 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ All changes that impact users of this module are documented in this file, in the [Common Changelog](https://common-changelog.org) format with some additional specifications defined in the CONTRIBUTING file. This codebase adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## Unreleased [patch] + +_Full changeset and discussions: [#42](https://github.com/OpenTermsArchive/deployment/pull/42)._ + +> Development of this release was supported by the [French Ministry for Foreign Affairs](https://www.diplomatie.gouv.fr/fr/politique-etrangere-de-la-france/diplomatie-numerique/) through its ministerial [State Startups incubator](https://beta.gouv.fr/startups/open-terms-archive.html) under the aegis of the Ambassador for Digital Affairs. + +### Fixed + +- Fix dependencies installation ## 1.2.0 - 2024-04-16