Merge pull request #1 from ansys-internal/mostieri/first_extension #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub CI | |
# run only on main branch. This avoids duplicated actions on PRs | |
on: | |
pull_request: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
env: | |
MAIN_PYTHON_VERSION: '3.10' | |
jobs: | |
build: | |
name: Build package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
- name: Install build requirements | |
run: | | |
pip install -U pip | |
pip install build | |
- name: Build | |
run: python -m build | |
- name: Install | |
run: pip install dist/*.whl | |
- name: Test import | |
run: | | |
mkdir tmp | |
cd tmp | |
python -c "from ansys.tools.omniverse import exts" | |
- name: Upload packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ansys-api-pyensight-packages | |
path: dist/ | |
retention-days: 7 | |
Release: | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags') | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
- uses: actions/download-artifact@v3 | |
- name: Display structure of downloaded files | |
run: ls -R | |
# - name: Upload to Public PyPi | |
# run: | | |
# pip install twine | |
# twine upload --skip-existing ./**/*.whl | |
# twine upload --skip-existing ./**/*.tar.gz | |
# env: | |
# TWINE_USERNAME: __token__ | |
# TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
generate_release_notes: true | |
files: | | |
./**/*.whl | |
./**/*.tar.gz | |