From 45b1a8f9ff5b5bc27b3ac679fd0269586aa36f1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Laurent?= Date: Mon, 30 May 2022 15:45:38 +0200 Subject: [PATCH] checking ng_client checkout mechanism --- .github/workflows/releases.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index fbd07b1..f6823bb 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -80,14 +80,18 @@ jobs: - name: checkout latest tag run: | + head src/ClientApp.js git fetch --tags git checkout "$(git describe --tags $(git rev-list --tags --max-count=1))" + head src/ClientApp.js working-directory: node_modules/ng_client - name: Install ng_client # this one has a package-lock.json run: | + head src/ClientApp.js npm ci + head src/ClientApp.js working-directory: node_modules/ng_client # rest of javascript deps @@ -95,7 +99,10 @@ jobs: run: npm install -g grunt-cli - name: Install dependencies - run: npm install + run: | + head node_modules/ng_client/src/ClientApp.js + npm install + head node_modules/ng_client/src/ClientApp.js # final "cleanup" - name: post job