From 1f4361f809e210a678259f229ac1b014009f6a47 Mon Sep 17 00:00:00 2001 From: iker-barriocanal <32816711+iker-barriocanal@users.noreply.github.com> Date: Wed, 10 Feb 2021 17:27:03 +0100 Subject: [PATCH 1/2] ci: Run `dist` job always when ci is run --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29c3860499..83d57a294a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,6 @@ jobs: timeout-minutes: 10 runs-on: ubuntu-16.04 - if: "startsWith(github.ref, 'refs/heads/release/')" - steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 From 8c68709368a48305e4551ae285405a443d03d45c Mon Sep 17 00:00:00 2001 From: iker-barriocanal <32816711+iker-barriocanal@users.noreply.github.com> Date: Wed, 10 Feb 2021 17:42:21 +0100 Subject: [PATCH 2/2] fix: Add missing instalation libraries --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 4fac8eca5a..3db2d9318b 100644 --- a/Makefile +++ b/Makefile @@ -61,5 +61,7 @@ apidocs-hotfix: apidocs .PHONY: apidocs-hotfix aws-lambda-layer-build: dist + $(VENV_PATH)/bin/pip install urllib3 + $(VENV_PATH)/bin/pip install certifi $(VENV_PATH)/bin/python -m scripts.build-awslambda-layer .PHONY: aws-lambda-layer-build