Skip to content

2025.9.1a4

2025.9.1a4 #6

Workflow file for this run

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

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

View workflow run for this annotation

GitHub Actions / Build distribution

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 10, Col: 3): Error calling workflow 'render-engine/render-engine-cli/.github/workflows/lint.yml@12069752abe2aaac1cb647808000a95115553557'. The workflow is requesting 'contents: write, pull-requests: write', but is only allowed 'contents: read, pull-requests: none'.
uses: ./.github/workflows/lint.yml
deploy:
needs: [test, lint]
name: Deploy to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- run: echo "SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)" >> $GITHUB_ENV
- run: uv build
- uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: ./dist