spectra/.gitea/workflows/docker-publish.yml

44 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2024-11-04 15:48:24 -05:00
name: Docker Build and Publish
on:
push:
branches: [ main ]
2024-11-05 23:49:09 -05:00
tags: [ 'v*.*.*' ]
2024-11-04 15:48:24 -05:00
pull_request:
branches: [ main ]
2024-11-05 23:49:09 -05:00
release:
types: [published]
2024-11-04 15:48:24 -05:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: git.dws.rip/${{ github.repository }}
tags: |
2024-11-05 23:49:09 -05:00
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=semver,pattern={{version}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=semver,pattern={{major}}.{{minor}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=sha,format=long
2024-11-04 15:48:24 -05:00
type=ref,event=pr
- name: Login to Gitea Container Registry
uses: docker/login-action@v2
with:
registry: git.dws.rip
username: ${{ github.actor }}
2024-11-05 14:46:10 -05:00
password: ${{ secrets.TOKEN }}
2024-11-04 15:48:24 -05:00
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}