From 5e0646ce5fce25c79660d22a3b778962e804324c Mon Sep 17 00:00:00 2001 From: Nick Papirniy Date: Tue, 21 Dec 2021 22:56:05 +0200 Subject: [PATCH] ci: gitlab action fix --- .github/workflows/main.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1586404..c1aef37 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,11 +42,17 @@ jobs: - uses: pnpm/action-setup@v2.0.1 with: version: 6.20.3 + - name: Cache .pnpm-store # From https://pnpm.io/continuous-integration + uses: actions/cache@v1 + with: + path: ~/.pnpm-store + key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }} + - run: pnpm install - name: "Automated Version Bump" id: version-bump uses: "phips28/gh-action-bump-version@v9.0.1" with: - tag-prefix: '' + tag-prefix: 'v' env: GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }} - uses: actions/setup-node@v2