Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cashmeresamurai committed Jun 18, 2024
1 parent 8804e6f commit 552a2ce
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,23 @@ jobs:
toolchain: stable
override: true

- name: Change directory to markdown-fastapi-rs
run: cd markdown-fastapi-rs

- name: Install maturin
run: pip install maturin
working-directory: markdown-fastapi-rs

- name: Build wheels
run: maturin build --release
working-directory: markdown-fastapi-rs

- name: Show contents of target/wheels
run: ls target/wheels
working-directory: markdown-fastapi-rs

- name: Upload wheels as artifacts
uses: actions/upload-artifact@v3
with:
name: wheels
path: target/wheels/*.whl
path: markdown-fastapi-rs/target/wheels/*.whl

0 comments on commit 552a2ce

Please sign in to comment.