Skip to content

release

release #3

Workflow file for this run

name: release
on:
workflow_dispatch: # Allows manual triggering of the workflow
jobs:
cd:
permissions:
id-token: write
contents: write
runs-on: ubuntu-latest
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Check-out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Python Semantic Release to prepare release
id: release
uses: python-semantic-release/[email protected]
with:
github_token: ${{ secrets.QUANDA_ADMIN }}
changelog: true
tag: true