From cee00fd31d597e8939592f057f6e03585f3deebf Mon Sep 17 00:00:00 2001 From: Ruslan Baidan Date: Wed, 5 Oct 2022 16:53:00 +0200 Subject: [PATCH] Update releases.yml Attempt to avoid submodules installation. --- .github/workflows/releases.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/releases.yml b/.github/workflows/releases.yml index 685a78c..d554e98 100644 --- a/.github/workflows/releases.yml +++ b/.github/workflows/releases.yml @@ -49,8 +49,10 @@ jobs: node-version: ${{ matrix.node-version }} - name: Install ng-anr - run: | - npm install ng_anr + uses: actions/checkout@v2 + with: + repository: monarc-project/ng-anr + path: './node_modules/ng_anr' - name: Install ng-client uses: actions/checkout@v2 @@ -60,8 +62,8 @@ jobs: - name: Install ng-client dependencies run: | - npm install - working-directory: node_modules/ng_client/ + cd node_modules/ng_client + npm ci # final "cleanup" - name: post job