Skip to content

Python Package Dispatch #2

Python Package Dispatch

Python Package Dispatch #2

Workflow file for this run

name: Python Package Dispatch
on:
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
build-and-publish:
runs-on: ubuntu-latest
env:
POETRY_HOME: /opt/poetry
VENV_PATH: ${{ runner.tool_cache }}/venv

Check failure on line 11 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Python Package Dispatch

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 11, Col: 18): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.tool_cache
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Cache Python dependencies
id: cache-python-deps
uses: actions/cache@v3
with:
path: ${{ env.VENV_PATH }}
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
restore-keys: |
venv-${{ runner.os }}-
- name: Install Poetry
if: steps.cache-python-deps.outputs.cache-hit != 'true'
run: |
python3 -m venv $POETRY_HOME
${{ env.VENV_PATH }}/bin/pip install poetry==1.8.2
${{ env.VENV_PATH }}/bin/poetry --version
- name: Install Package
run: |
${{ env.VENV_PATH }}/bin/poetry install
- name: Build Package
run: |
${{ env.VENV_PATH }}/bin/poetry build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1