Skip to content

Merge pull request #109 from abcdlsj/googlekeep_poster #12

Merge pull request #109 from abcdlsj/googlekeep_poster

Merge pull request #109 from abcdlsj/googlekeep_poster #12

Workflow file for this run

name: Release to PyPI
on:
workflow_dispatch:
push:
tags:
- v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Build
run: |
python setup.py sdist
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}