From a4301c5d23ff298caac4e4ee05cae857be874377 Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Wed, 4 May 2022 13:32:35 +0200 Subject: [PATCH] Update github-actions.yml --- .github/workflows/github-actions.yml | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index 3608633fd..ae6680669 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -1,4 +1,4 @@ -name: ci +name: release-coolify on: push: @@ -12,7 +12,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - - + - name: Set up QEMU uses: docker/setup-qemu-action@v1 - @@ -24,20 +24,6 @@ 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 @@ -46,3 +32,5 @@ jobs: platforms: linux/amd64,linux/arm64 push: true tags: coollabsio/coolify-test:latest + cache-from: type=registry,ref=coollabsio/coolify-test:buildcache + cache-to: type=registry,ref=coollabsio/coolify-test:buildcache,mode=max