Compare commits

..

1 Commits

Author SHA1 Message Date
unkinben 02f4e113a0 feat: first build of ProxLB
Build / Build on AlmaLinux 8 (pull_request) Failing after 1m57s
- version 1.0.2
- setup gitea actions workflows
2024-09-07 22:44:57 +10:00
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ jobs:
dnf install -y rpm cmake git make python3-yaml
- name: Build project
run: make package
run: make build
- name: Find built packages
run: |
+2 -2
View File
@@ -26,12 +26,12 @@ jobs:
dnf install -y rpm cmake git make python3-yaml
- name: Build project
run: make package
run: make build
- name: Upload RPMs
env:
DRONECI_PASSWORD: ${{ secrets.DRONECI_PASSWORD }}
run: |
for rpm in /workspace/unkin/rpmbuild-proxlb/packages/*.rpm; do
for rpm in /workspace/src/rpmbuild/RPMS/*/*.rpm; do
curl --user droneci:${{ secrets.DRONECI_PASSWORD }} --upload-file $rpm https://git.query.consul/api/packages/unkin/rpm/almalinux/el8/upload
done