feat: change to buildrunner
Build / build (pull_request) Successful in 51s

- cleaned up multiple layers
- removed deploy file
- updated deploy workflow
This commit is contained in:
2024-11-30 23:53:02 +11:00
parent 346861ff9a
commit 010d6a7b80
6 changed files with 4 additions and 21 deletions
+2 -2
View File
@@ -25,6 +25,6 @@ jobs:
run: |
make all
- name: Show tree
- name: Show RPMs
run: |
tree /workspace
find /workspace -type f -name "*.rpm"
+1 -1
View File
@@ -31,6 +31,6 @@ jobs:
env:
DRONECI_PASSWORD: ${{ secrets.DRONECI_PASSWORD }}
run: |
for deploy in /workspace/src/rpmbuild/RPMS/*/*.rpm; do
for rpm in $(find /workspace -type f -name "*.rpm"); do
curl --user droneci:${{ secrets.DRONECI_PASSWORD }} --upload-file $rpm https://git.query.consul/api/packages/unkin/rpm/almalinux/el8/upload
done