- 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:
parent
8e052bbea6
commit
14b317883b
@ -22,7 +22,22 @@ jobs:
|
||||
run: |
|
||||
find /workspace -type f -name "*.rpm"
|
||||
|
||||
- uses: actions/upload-artifact@v3
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
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"
|
||||
|
||||
@ -20,7 +20,8 @@ jobs:
|
||||
run: |
|
||||
mkdir -p /workspace/unkin/rpmbuilder/dist
|
||||
|
||||
- uses: actions/download-artifact@v2
|
||||
- name: Download Artifacts
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: rpms
|
||||
path: /workspace/unkin/rpmbuilder/dist/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user