swarmproxy/.gitea/workflows/ci.yaml
OCram85 2138d04e5d
All checks were successful
ci / docker (pull_request) Successful in 29s
Merge branch 'main' into renovate/actions-setup-buildx-action-3.x
2024-06-20 17:23:18 +02:00

50 lines
1.3 KiB
YAML

name: ci
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
steps:
-
name: Docker meta
id: meta
uses: https://gitea.ocram85.com/actions/metadata-action@v4
with:
images: |
gitea.ocram85.com/ocram85/swarmproxy
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
-
name: Set up Docker Buildx
uses: https://gitea.ocram85.com/actions/setup-buildx-action@v3
-
name: Login to Gitea Package Registry
uses: https://gitea.ocram85.com/actions/login-action@v2
with:
registry: gitea.ocram85.com
username: ${{ secrets.USERNAME }}
#password: ${{ secrets.PASSWORD }}
password: ${{ secrets.TOKEN }}
-
name: Build and push
uses: https://gitea.ocram85.com/actions/build-push-action@v6
with:
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}