mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
53 lines
1.3 KiB
YAML
53 lines
1.3 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
if: github.repository == 'jazzband/django-configurations'
|
|
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: Get pip cache dir
|
|
id: pip-cache
|
|
run: |
|
|
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.pip-cache.outputs.dir }}
|
|
key: release-${{ hashFiles('**/setup.py') }}
|
|
restore-keys: |
|
|
release-
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
python -m pip install --upgrade setuptools twine wheel
|
|
|
|
- name: Build package
|
|
run: |
|
|
python setup.py --version
|
|
python setup.py sdist --format=gztar bdist_wheel
|
|
twine check dist/*
|
|
|
|
- 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/django-configurations/upload
|