Skip to content

Commit

Permalink
ci: upload stand-alone artifacts
Browse files Browse the repository at this point in the history
Co-authored-by: baum <alexander.indenbaum@gmail.com>
Signed-off-by: Ernesto Puerta <37327689+epuertat@users.noreply.github.com>
Signed-off-by: Ernesto Puerta <epuertat@redhat.com>
  • Loading branch information
epuertat and baum committed Aug 2, 2023
1 parent 38ea58f commit 279a0da
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,19 @@ jobs:
run: make build

- name: Build stand-alone packages (RPMs and Python wheel)
run: make export-rpms export-python EXPORT_DIR=$(mktemp -d)
id: build-standalone-packages
run: |
export EXPORT_DIR=$(mktemp -d)
make export-rpms export-python
echo "EXPORT_DIR=$EXPORT_DIR" >> "$GITHUB_ENV"
- name: Upload stand-alone packages
uses: actions/upload-artifact@v3
with:
name: standalone
path: |
${{ env.EXPORT_DIR }}/rpm/**/*.rpm
${{ env.EXPORT_DIR }}/*.whl
- name: Setup huge-pages
run: make setup HUGEPAGES=$HUGEPAGES
Expand Down

0 comments on commit 279a0da

Please sign in to comment.