From dcae1211d7aab914437f22ea9a739a00f06caa98 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 29 Sep 2020 18:22:51 +0200 Subject: [PATCH] Fixed GH action cache paths and fixed deploy action. --- .github/workflows/deploy.yml | 5 ++++- .github/workflows/tests.yml | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a3c9c061..b0801e25 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,5 +1,8 @@ name: Deploy +on: + workflow_dispatch: + jobs: build: runs-on: ubuntu-latest @@ -10,7 +13,7 @@ jobs: env: cache-name: yarn-cache with: - path: ~/.yarn + path: .yarn key: ${{ runner.os }}-deploy-${{ env.cache-name }} - name: Checkout diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c3699e1f..96cafcb7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: env: cache-name: yarn-cache with: - path: ~/.yarn + path: .yarn key: ${{ runner.os }}-tests-${{ env.cache-name }} - name: Checkout