2025-03-14 22:31:12 -04:00
|
|
|
name: Release
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
2025-03-14 22:35:39 -04:00
|
|
|
types: [published]
|
2025-03-14 22:31:12 -04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
2025-03-14 22:35:39 -04:00
|
|
|
- name: Docker meta
|
|
|
|
id: meta
|
|
|
|
uses: docker/metadata-action@v4
|
2025-03-14 22:31:12 -04:00
|
|
|
with:
|
2025-03-14 22:35:39 -04:00
|
|
|
images: git.dws.rip/${{ github.repository }}
|
|
|
|
tags: |
|
|
|
|
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
|
|
|
|
type=ref,event=pr
|
2025-03-14 22:31:12 -04:00
|
|
|
|
2025-03-14 22:35:39 -04:00
|
|
|
- name: Login to Gitea Container Registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: git.dws.rip
|
|
|
|
username: ${{ github.actor }}
|
|
|
|
password: ${{ secrets.GLOBAL_KEY }}
|
|
|
|
|
|
|
|
- name: Build and push
|
|
|
|
uses: docker/build-push-action@v4
|
2025-03-14 22:31:12 -04:00
|
|
|
with:
|
|
|
|
context: .
|
2025-03-14 22:35:39 -04:00
|
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|