From 561fe8283f504a5cf8e1d6e4cfa386365ce9505b Mon Sep 17 00:00:00 2001 From: ful1e5 <24286590+ful1e5@users.noreply.github.com> Date: Wed, 3 Feb 2021 18:31:56 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20step=20name=20added?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d2a673a..dd84e5f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,14 +24,15 @@ jobs: - name: Install build dependencies (apt) run: | - sudo apt install -y libx11-dev libxcursor-dev libpng-dev + sudo apt install -y libx11-dev libxcursor-dev libpng-dev continue-on-error: false - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn cache dir)" - - uses: actions/cache@v2 + - name: Caching yarn packages + uses: actions/cache@v2 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -48,7 +49,8 @@ jobs: id: pip-cache-dir-path run: echo "::set-output name=dir::$(pip cache dir)" - - uses: actions/cache@v2 + - name: Caching pip packages + uses: actions/cache@v2 id: pip-cache # use this to check for `cache-hit` (`steps.pip-cache.outputs.cache-hit != 'true'`) with: path: ${{ steps.pip-cache-dir-path.outputs.dir }}