Compare commits

..

1 Commits

Author SHA1 Message Date
14b317883b feat: add artifact management
Some checks failed
Build / build (pull_request) Failing after 43s
- upload/download artifacts instead of building build and deploy jobs
- updated uv package with version in url
- add ruff/0.8.1 package
2024-12-01 17:08:50 +11:00

View File

@ -27,3 +27,17 @@ jobs:
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm
- name: Create dist directory
run: |
mkdir -p /tmp/unkin/rpmbuilder/dist
- name: Download Artifacts
uses: actions/download-artifact@v1
with:
name: rpms
path: /tmp/unkin/rpmbuilder/dist/
- name: Show RPMs from Artifact
run: |
find /tmp -type f -name "*.rpm"