Compare commits

...

4 Commits

Author SHA1 Message Date
Amir Raminfar
6bc133a643 Release 3.5.7 2021-04-13 11:55:36 -07:00
Amir Raminfar
280413c085 Uses local cache instead 2021-04-13 11:55:28 -07:00
Amir Raminfar
0bf265b001 Release 3.5.6 2021-04-13 11:48:29 -07:00
Amir Raminfar
c65d1f18ae Adds cache 2021-04-13 11:48:21 -07:00
2 changed files with 17 additions and 3 deletions

View File

@@ -55,6 +55,13 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and push
uses: docker/build-push-action@v2
with:
@@ -62,8 +69,15 @@ jobs:
push: true
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
- # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
name: Move cache
run: |
rm -rf /tmp/.buildx-cache
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
git-release:
needs: [buildx]
name: Github Release

View File

@@ -1,6 +1,6 @@
{
"name": "dozzle",
"version": "3.5.5",
"version": "3.5.7",
"description": "Realtime log viewer for docker containers. ",
"scripts": {
"watch": "npm-run-all -p watch:*",