drop-in-url-previews/.gitea/workflows/publish-docker.yaml
nexy7574 0bf6883cc3
All checks were successful
Build and Publish / build_and_publish (push) Successful in 3m45s
don't provide armv7 builds
2024-06-27 18:16:13 +01:00

38 lines
1.1 KiB
YAML

name: Build and Publish
run-name: Build and Publish
on: [push]
jobs:
build_and_publish:
runs-on: [ubuntu-latest]
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: git.i-am.nexus/nex/drop-in-url-previews
- name: Log into forgejo CR
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v3
with:
registry: git.i-am.nexus
username: nex
password: ${{ secrets.CR_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=git.i-am.nexus/nex/drop-in-url-previews:master
cache-to: type=inline