Compare commits

..

No commits in common. "7dc3fda3b4a109a135d5b733b001596914f4e488" and "8e052bbea63e6f61eb9d3b217ef457816edb4ea6" have entirely different histories.

2 changed files with 16 additions and 2 deletions

View File

@ -21,3 +21,8 @@ jobs:
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- uses: actions/upload-artifact@v3
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/*/*.rpm

View File

@ -16,9 +16,18 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Build Packages
- name: Create dist directory
run: |
make all
mkdir -p /workspace/unkin/rpmbuilder/dist
- uses: actions/download-artifact@v2
with:
name: rpms
path: /workspace/unkin/rpmbuilder/dist/
- name: Show RPMs
run: |
find /workspace -type f -name "*.rpm"
- name: Upload RPMs to Gitea
env: