[test] #3
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: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
test: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
repository: interscript/interscript | |
- name: Run bootstrap script | |
run: ruby bootstrap.rb | |
- name: Use Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.2" | |
- name: Use Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Compile maps | |
run: cd python; pip install build regex pytest twine; bash ./build.sh; pip install . | |
- name: PyTest | |
run: cd python; pytest | |
- name: Build package | |
run: cd python; python -m build | |
- name: Publish distribution to PyPI | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
packages-dir: python/dist/ | |
permissions: | |
id-token: write |