Skip to content

Commit

Permalink
add upload artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 committed Sep 10, 2024
1 parent 721b6b9 commit be90343
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,26 @@ jobs:
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse --platform linux --archs ${{ matrix.arch }}

- name: Upload Artifact for next job
uses: actions/upload-artifact@master
with:
name: logprep-build
path: wheelhouse

containerbuild:
needs: build_wheels
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12.3"]

runs-on: ubuntu-latest
steps:
- name: Download artifact from previous job
uses: actions/download-artifact@master
with:
name: logprep-build
path: wheelhouse

- uses: actions/checkout@v4
with:
fetch-depth: 0
Expand Down

0 comments on commit be90343

Please sign in to comment.