mirror of
https://github.com/sprockets/sprockets-postgres.git
synced 2024-11-11 03:00:20 +00:00
20 lines
595 B
YAML
20 lines
595 B
YAML
name: Deployment
|
|
on:
|
|
push:
|
|
branches-ignore: ["*"]
|
|
tags: ["*"]
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') && github.repository == 'sprockets/sprockets-postgres'
|
|
container: python:3.8-alpine
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v1
|
|
- name: Build package
|
|
run: python3 setup.py sdist
|
|
- name: Publish package
|
|
uses: pypa/gh-action-pypi-publish@master
|
|
with:
|
|
user: __token__
|
|
password: ${{ secrets.PYPI_PASSWORD }}
|