Skip to content

2026.3.1a1

2026.3.1a1 #2

Workflow file for this run

name: Build distribution
on:
release:
types: [created]
jobs:
test:
uses: ./.github/workflows/test.yml

Check warning on line 9 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Build distribution

Workflow syntax warning

In .github/workflows/publish.yml (Line: 9, Col: 11): Error from called workflow render-engine/render-engine-markdown/.github/workflows/test.yml@9724bf77ddf41fce065ed38507ad8ccd5635b9ca (Line: 15, Col: 9): Conditional expression contains literal text outside replacement tokens. This will cause the expression to always evaluate to truthy. Did you mean to put the entire expression inside ${{ }}?
deploy:
needs: test
name: Deploy to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install build dependencies
run: python -m pip install build twine
- name: Build distributions
run: python -m build
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TWINE_PASSWORD}}