Skip to content

Add version release notes and update readmes #2

Add version release notes and update readmes

Add version release notes and update readmes #2

# This workflow will upload a Python Package using Twine when a release is created
name: Publish PyPI Package
on:
push:
branches: main
# Pattern matched against refs/tags
# Push events to every tag not containing /
tags:
- '*'
permissions:
contents: read
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
with:

Check failure on line 35 in .github/workflows/s100py-publish.yaml

View workflow run for this annotation

GitHub Actions / Publish PyPI Package

Invalid workflow file

The workflow is not valid. .github/workflows/s100py-publish.yaml (Line: 35, Col: 9): Unexpected value 'with'
skip-existing: true
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}