Skip to content

Commit 37eda79

Browse files
authored
Fix dependencies installation (#42)
2 parents 844f8a8 + 85c6da3 commit 37eda79

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
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).
44

5-
## Unreleased
5+
## Unreleased [patch]
6+
7+
_Full changeset and discussions: [#42](https://github.com/OpenTermsArchive/deployment/pull/42)._
8+
9+
> 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.
10+
11+
### Fixed
12+
13+
- Fix dependencies installation
614

715
## 1.2.0 - 2024-04-16
816

roles/engine/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
- name: Install services declarations dependencies
3131
ansible.builtin.command:
32-
cmd: npm install ci
32+
cmd: npm ci
3333
chdir: '/home/{{ ansible_user }}/{{ ota_engine_declarations_directory }}'
3434
tags:
3535
- update-declarations

roles/federated_api/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
- name: Install dependencies
3737
ansible.builtin.command:
38-
cmd: npm install ci
38+
cmd: npm ci
3939
chdir: '/home/{{ ansible_user }}/{{ ota_federated_api_directory }}'
4040

4141
- name: Add .env file

0 commit comments

Comments
 (0)