Migrate to Actions #13

Merged
chris merged 39 commits from gitea-actions into release 2024-12-17 18:37:06 -05:00
Showing only changes of commit 1acbfdc393 - Show all commits

View File

@ -6,7 +6,7 @@ on:
- gitea-actions
jobs:
Docker-Build-Pipeline:
Build-Fedora:
runs-on: self-hosted
defaults:
run:
@ -31,4 +31,29 @@ jobs:
run: |
cd ansible-dev
docker build --no-cache -f build/Containerfile.fedora39 -t gitea.thezengarden.net/podman/ansible-dev/fedora39:gitea-actions .
Build-CentOS:
runs-on: self-hosted
defaults:
run:
working-directory: /home/builds/src
steps:
- name: Cleanup old code
run: rm -rfv *
- name: Clone repository
run: git clone https://gitea.thezengarden.net/podman/ansible-dev.git
- name: Environment check
run: |
hostnamectl
env
whoami
pwd
tree
- name: Build CentOS 9 Docker Image
run: |
cd ansible-dev
docker build --no-cache -f build/Containerfile.centos-stream9 -t gitea.thezengarden.net/podman/ansible-dev/centos9:gitea-actions .