v0.1.6 #14
Workflow file for this run
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: release | |
on: | |
release: | |
types: [created] | |
permissions: | |
contents: write | |
jobs: | |
build: | |
defaults: | |
run: | |
shell: bash | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
python-version: ['3.12'] | |
python-arch: [x64] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }}-${{ matrix.python-arch }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: ${{ matrix.python-arch }} | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Initialize Submodules | |
run: | | |
git submodule update --init --recursive | |
- name: Build | |
run: | | |
poetry build | |
env: | |
EMATH_GENERATE_MATH_FILES: 0 | |
- name: Upload Github Release Artifact | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./dist/*.whl | |
file_glob: true | |
tag: ${{ github.ref }} | |
- name: Upload to PyPi | |
run: | | |
poetry publish --skip-existing | |
env: | |
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} |