Compare commits

..

No commits in common. "9ba94f0aa9e11fd4ec4c5c4f21375a54627a9753" and "f7b4f19aec0e8024d88fc807e013b5169b039edf" have entirely different histories.

2 changed files with 17 additions and 12 deletions

View File

@ -7,6 +7,9 @@ on:
workflow_dispatch: workflow_dispatch:
jobs: jobs:
build:
uses: ./.gitea/workflows/build.yaml
deploy: deploy:
runs-on: almalinux-8 runs-on: almalinux-8
container: container:
@ -17,22 +20,24 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Build Packages
run: |
make all
- name: Create dist directory - name: Create dist directory
run: | run: |
mkdir -p /workspace/unkin/rpmbuilder/dist mkdir -p /tmp/unkin/rpmbuilder/dist
- name: Download artifact - uses: actions/download-artifact@v3
id: download-artifact
uses: dawidd6/action-download-artifact@v6
with: with:
workflow: build.yaml name: rpms
workflow_search: false path: /tmp/unkin/rpmbuilder/dist/
workflow_conclusion: success
name: rpm
path: /workspace/unkin/rpmbuilder/dist
search_artifacts: true
- name: Show RPMs - name: Show RPMs from Artifacts
run: |
find /tmp -type f -name "*.rpm"
- name: Show RPMs from Build
run: | run: |
find /workspace -type f -name "*.rpm" find /workspace -type f -name "*.rpm"

View File

@ -1 +1 @@
4 3