Skip to content

fix pdm.lock

fix pdm.lock #8

Workflow file for this run

on:
push:
tags:
- '*'
name: Release
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.8" ]
os: [ "ubuntu-latest" ]
name: Release
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install -v && pdm info
- name: Publish on git tags
run: make publish
env:
PYPI_UNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}