create new pipeline and build file for minimal EE
Some checks failed
Gitea Actions Minimal / Bootstrap-runner (push) Successful in 4s
Gitea Actions Minimal / Create-dockerfile-with-ansible-builder (push) Failing after 5s

This commit is contained in:
root
2024-07-18 10:14:36 +02:00
parent 6c279fd0de
commit 0610517bcb

View File

@@ -1,4 +1,4 @@
name: Gitea Actions Demo name: Gitea Actions Minimal
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: on:
push: push:
@@ -31,7 +31,7 @@ jobs:
run: | run: |
ls ${{ gitea.workspace }} ls ${{ gitea.workspace }}
- name: build context - name: build context
run: ansible-builder create -f rocky-environment.yml -c context-rocky run: ansible-builder create -f minimal-environment.yml -c context-minimal
- name: Login to the Container registry - name: Login to the Container registry
uses: docker/login-action@v2 uses: docker/login-action@v2
with: with:
@@ -41,7 +41,7 @@ jobs:
- name: build and push docker image - name: build and push docker image
uses: https://github.com/docker/build-push-action@v5 uses: https://github.com/docker/build-push-action@v5
with: with:
context: context-rocky context: context-minimal
file: context-rocky/Containerfile file: context-minimal/Containerfile
push: true push: true
tags: git.hyperon.be/bram/ultimate-ee-minimal tags: git.hyperon.be/bram/ultimate-ee-minimal