kopia lustrzana https://github.com/jazzband/icalevents
38 wiersze
871 B
YAML
38 wiersze
871 B
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
deploy:
|
|
if: github.repository == 'jazzband/icalevents'
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install poetry==1.8.3
|
|
|
|
- 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
|