Compare commits

...

4 commits
master ... ci

Author SHA1 Message Date
Simon Bruder d8656bfdfe
fixup! WIP Add CI
Some checks failed
/ ls (push) Failing after 12s
2024-06-02 17:17:58 +02:00
Simon Bruder 6fd1edb950
fixup! WIP Add CI
Some checks failed
/ ls (push) Failing after 6s
2024-06-02 17:13:06 +02:00
Simon Bruder 81d9357e83
fixup! WIP Add CI
Some checks failed
/ ls (push) Failing after 2s
2024-06-02 17:10:54 +02:00
Simon Bruder 29dbc4cc7b
WIP Add CI
Some checks failed
/ ls (push) Failing after 19s
2024-06-02 16:54:09 +02:00

View file

@ -0,0 +1,31 @@
on: [push]
jobs:
ls:
runs-on: docker
steps:
- name: Set up buildah
run: |
apt update
apt -y install buildah
- name: Checkout
uses: https://code.forgejo.org/actions/checkout@v4
- name: Build
uses: https://github.com/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: https://github.com/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 }}"