From 7484ab70823d8c822edc8986ce5e3d7ec2046953 Mon Sep 17 00:00:00 2001 From: Stefan Bethke Date: Tue, 30 Jul 2024 09:34:56 +0200 Subject: [PATCH] Build image on Forgejo runner --- .forgejo/workflows/image.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .forgejo/workflows/image.yaml diff --git a/.forgejo/workflows/image.yaml b/.forgejo/workflows/image.yaml new file mode 100644 index 0000000..fe04e52 --- /dev/null +++ b/.forgejo/workflows/image.yaml @@ -0,0 +1,26 @@ +on: + push: + branches: + - main + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: docker/metadata-action@v3 + id: metadata + with: + images: git.hamburg.ccc.de/${{ github.repository }} + - 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 \ No newline at end of file