sentient-jimmy/.gitea/workflows/docker.yml

37 lines
960 B
YAML
Raw Normal View History

2024-06-10 17:16:02 +01:00
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:
2024-06-11 01:03:51 +01:00
images: git.i-am.nexus/nex/sentient-jimmy
2024-06-10 17:16:02 +01:00
- name: Log into forgejo CR
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' }}
tags: ${{ steps.meta.outputs.tags }}
2024-06-10 17:20:09 +01:00
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max