fixup! WIP Add CI
Some checks failed
/ ls (push) Failing after 2s

This commit is contained in:
Simon Bruder 2024-06-02 17:10:54 +02:00
parent 29dbc4cc7b
commit 81d9357e83
Signed by: simon
GPG key ID: 347FF8699CDA0776

View file

@ -3,10 +3,25 @@ on: [push]
jobs:
ls:
runs-on: docker
container:
image: quay.io/buildah/stable
steps:
- uses: https://code.forgejo.org/actions/checkout@v4
- run: |
ls -l
buildah build --layers -t osu --build-arg OSU_VERSION=2024.412.1 --jobs 0
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v4
- name: Build
uses: redhat-actions/buildah-build@v2
with:
image: git.sbruder.de/containers/osu
#tags: latest
containerfiles: |
./Containerfile
layers: true
oci: true
- name: Push
id: push
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
#username: quay-user
#password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Print image url
run: echo "Image pushed to ${{ steps.push-to-quay.outputs.registry-paths }}"