Skip to content

Add Explorer mode and compact UI improvements #108

Add Explorer mode and compact UI improvements

Add Explorer mode and compact UI improvements #108

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
tags: [ "v*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract version
id: get_version
run: |
if [[ "${GITHUB_REF_TYPE}" == "tag" ]]; then
VERSION=${GITHUB_REF_NAME}
else
VERSION=latest
fi
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Build and push multi-arch Docker image
uses: docker/build-push-action@v5
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64
push: true
no-cache: true
tags: |
ghcr.io/${{ github.repository }}:${{ steps.get_version.outputs.version }}
#cache-from: type=gha
#cache-to: type=gha,mode=max