Skip to content

Get rid of caching if podman can't handle it #17

Get rid of caching if podman can't handle it

Get rid of caching if podman can't handle it #17

Workflow file for this run

name: Build
on:
push:
branches:
- 'master'
env:
REGISTRY: ghcr.io
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/ZeusWPI/Tap
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=sha
flavor: |
latest=auto
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}