Skip to content

release: Version 0.2.0 #2

release: Version 0.2.0

release: Version 0.2.0 #2

Workflow file for this run

name: 'Release new version'
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version-file: '.python-version'
- name: Build package
run: |
pip install hatch
hatch build
ls -l dist
- uses: actions/upload-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/
gh-release:
needs: [build]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/
- uses: ncipollo/release-action@v1
with:
artifacts: 'dist/*'
bodyFile: '.github/release-body.md'
draft: false
name: Release ${{ github.ref_name }}
tag: ${{ github.ref }}
prerelease: false
publish-pypi:
needs: [build]
runs-on: ubuntu-latest
if: success() && ${{ needs.prepare.outputs.is-release }}
steps:
- uses: actions/download-artifact@v4
with:
name: packages-${{ github.ref_name }}
path: dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
deploy-doc:

Check failure on line 58 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release new version

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 58, Col: 3): Error calling workflow 'atsphinx/mini18n/.github/workflows/deploy-doc.yml@a0c915e7bc2dd63c5f40b83e3ca77e93d773ba7f'. The nested job 'deploy-doc' is requesting 'pages: write, id-token: write', but is only allowed 'pages: none, id-token: none'.
needs: [build]
uses: './.github/workflows/deploy-doc.yml'
secrets: inherit