1
0
mirror of https://github.com/b4tman/sync_ics2gcal synced 2024-09-21 17:08:02 +00:00
sync_ics2gcal/.github/workflows/pythonpublish.yml

34 lines
744 B
YAML
Raw Normal View History

name: Upload Python Package
on:
release:
types: [created]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
2022-04-05 09:38:17 +00:00
- uses: actions/checkout@v3
- name: Set up Python
2021-10-09 12:13:30 +00:00
uses: actions/setup-python@v2
with:
python-version: '3.x'
2021-10-09 12:13:30 +00:00
- name: Upgrade pip
run: python -m pip install --upgrade pip
- name: Load cached Poetry installation
2022-04-05 09:37:02 +00:00
uses: actions/cache@v3.0.1
2021-10-09 12:13:30 +00:00
with:
path: ~/.local
2022-04-05 09:40:40 +00:00
key: poetry-1
2021-10-09 12:13:30 +00:00
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install deps
run: poetry install
- name: Build
run: poetry build
- name: Publish
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.pypi_token }}
run: |
poetry publish -n