Update github-actions.yml

This commit is contained in:
Andras Bacsai 2022-05-04 13:22:54 +02:00 committed by GitHub
parent 435f063c36
commit 86b7824c78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,20 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Cache pnpm modules
uses: actions/cache@v2
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
-
uses: pnpm/action-setup@v2.1.0
with:
version: 7.0.0
run_install: false
-
name: Build and push
uses: docker/build-push-action@v2