Add support for passing parameters to nested values. #9
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: test_release | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.10", "3.11"] | |
name: test-${{ matrix.python }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- run: curl -sSL https://install.python-poetry.org | python3 - | |
- run: poetry install | |
- run: poetry run task test | |
all-tests: | |
needs: [tests] | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo ok | |
publish: | |
needs: all-tests | |
if: github.event_name == 'release' | |
runs-on: ubuntu-latest | |
environment: | |
name: pypi | |
url: https://pypi.org/p/typedpath | |
permissions: | |
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- run: curl -sSL https://install.python-poetry.org | python3 - | |
- run: poetry install | |
- run: poetry run python set_version.py "${{github.ref_name}}" | |
- run: poetry build | |
- uses: pypa/gh-action-pypi-publish@release/v1 |