From 5898e54ed569f1dac4ad3f5542e74c2e200cbe98 Mon Sep 17 00:00:00 2001 From: Cosmin Poieana Date: Tue, 10 Oct 2023 14:06:06 +0300 Subject: [PATCH] Fix invocations installation command in core flow --- .github/workflows/core.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/core.yaml b/.github/workflows/core.yaml index ef45b8a7a4..72909751c5 100644 --- a/.github/workflows/core.yaml +++ b/.github/workflows/core.yaml @@ -90,7 +90,7 @@ jobs: path: .venv key: venv-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('poetry.lock') }} - name: Install invocation package - run: invoke install-invocations + run: invoke install-invocations || invoke self.install-invocations - name: Install dependencies run: invoke install - name: Lint @@ -117,7 +117,7 @@ jobs: - name: Install invocation prerequisites run: pip install -Ur ../../invocations/requirements.txt - name: Install invocation package - run: invoke install-invocations + run: invoke install-invocations || invoke self.install-invocations - name: Install dependencies run: invoke install - name: Build and publish package