feat: add multi-release build jobs
Build / build-8 (pull_request) Successful in 1m1s
Build / build-9 (pull_request) Successful in 2m4s

- update build/deploy to be multiple jobs
- update to use multiple artifacts
This commit is contained in:
2024-12-20 23:57:10 +11:00
parent 64b5537171
commit adedeed725
2 changed files with 60 additions and 7 deletions
+26 -2
View File
@@ -6,7 +6,7 @@ on:
workflow_dispatch:
jobs:
build:
build-8:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux8-runnerdnd:latest
@@ -27,5 +27,29 @@ jobs:
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: rpms
name: rpms-8
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm
build-9:
runs-on: almalinux-8
container:
image: git.query.consul/unkin/almalinux9-runnerdnd:latest
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
run: |
make all
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: rpms-9
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm