Skip to content

Fix verifier CI sandbox behavior #2

Fix verifier CI sandbox behavior

Fix verifier CI sandbox behavior #2

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build distributions
run: python -m build
- name: Check distributions
run: twine check dist/*
- name: Publish GitHub release
uses: softprops/action-gh-release@v2
with:
files: dist/*
generate_release_notes: true
prerelease: true