Skip to content

Commit

Permalink
Merge pull request #107 from casework/use_build_module_in_ci
Browse files Browse the repository at this point in the history
Use build module in CI build step
  • Loading branch information
ajnelson-nist authored Nov 13, 2024
2 parents 9bd2bed + ba3bd16 commit 3ed976f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ jobs:
# Build the binary wheel as well as the source tar
- name: Build Objects
run: |
pip install -q twine wheel
python setup.py sdist bdist_wheel
pip install -q twine build
python -m build
# Ensure the objects were packaged correctly and there wasn't an issue with
# the compilation or packaging process.
- name: Check Objects
run: twine check dist/*

# Upload the packages on all develop and main pipleines for test consumption
# Upload the packages on all develop and main pipelines for test consumption
- name: Upload HTML Docs
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 3ed976f

Please sign in to comment.