feat: add artifact management
Build / build (pull_request) Successful in 48s

- upload/download artifacts instead of building build and deploy jobs
- updated uv package with version in url
- add ruff/0.8.1 package
This commit is contained in:
2024-12-01 16:13:30 +11:00
parent e499d37b35
commit 2caa554775
7 changed files with 83 additions and 4 deletions
+6
View File
@@ -21,3 +21,9 @@ jobs:
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm
+12 -2
View File
@@ -16,9 +16,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
- name: Create dist directory
run: |
make all
mkdir -p /workspace/unkin/rpmbuilder/dist
- name: Download Artifacts
uses: actions/download-artifact@v1
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- name: Upload RPMs to Gitea
env: