Skip to content

Fix old string formating rules error #6

Fix old string formating rules error

Fix old string formating rules error #6

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
build-and-publish:
runs-on: ubuntu-latest
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install build dependencies
run: python -m pip install -U hatch hatch-vcs
- name: Build
run: hatch build --clean
- name: Publish
run: hatch publish
env:
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.HatchAuth }}