Skip to content

Merge pull request #155 from DerDreschner/chore/release-0.2.0 #7

Merge pull request #155 from DerDreschner/chore/release-0.2.0

Merge pull request #155 from DerDreschner/chore/release-0.2.0 #7

Workflow file for this run

name: Release
on:
push:
tags:
- '*'
jobs:
deploy:
if: github.repository == 'jazzband/icalevents'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry==2.0.1
- name: Build package
run: poetry build
- name: Upload packages to Jazzband
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: jazzband
password: ${{ secrets.JAZZBAND_RELEASE_KEY }}
repository_url: https://jazzband.co/projects/icalevents/upload