keycloak/.forgejo/workflows/container-build.yml
Sebastian Tobie 7bb1ec868d
Einige Prüfungen sind fehlgeschlagen
/ build-image (push) Failing after 4s
aadded some debugging
2025-01-19 21:46:36 +01:00

23 Zeilen
712 B
YAML

---
on: [push]
jobs:
build-image:
runs-on: host
steps:
- name: Test OS
shell: js
run: |
console.log(process.env.RUNNER_OS)
- uses: actions/checkout@v3
- uses: https://github.com/redhat-actions/buildah-build@v2
with:
containerfiles: Containerfile
image: ${{ github.repository }}
registry: gitea.sebastian-tobie.de
tags: latest ${{ github.run_number }}
- uses: https://github.com/redhat-actions/push-to-registry@v2.8
with:
image: ${{ github.repository }}
registry: gitea.sebastian-tobie.de
tags: latest ${{ github.run_number }}
password: ${{ github.token }}