This repository has been archived on 2024-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
ccchh-pretix/.forgejo/workflows/image.yaml
Stefan Bethke 94c60b6192
Some checks failed
/ build (push) Failing after 28s
use proper image name
2024-07-30 09:40:12 +02:00

26 lines
746 B
YAML

on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/metadata-action@v5
id: metadata
with:
images: git.hamburg.ccc.de/${{ github.repository }}/pretix
- uses: docker/login-action@v1
with:
registry: git.hamburg.ccc.de
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: https://github.com/int128/kaniko-action@v1
with:
push: true
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
cache: true
cache-repository: git.hamburg.ccc.de/${{ github.repository }}/cache