fix(docs): updated instructions for releases #20
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is part of the DiscoPoP software (http://www.discopop.tu-darmstadt.de) | |
# | |
# Copyright (c) 2020, Technische Universitaet Darmstadt, Germany | |
# | |
# This software may be modified and distributed under the terms of | |
# the 3-Clause BSD License. See the LICENSE file in the package base | |
# directory for details. | |
name: "Publish Package" | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish: | |
name: "Publish Package" | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v2 | |
- name: "Setup Python" | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: "Get Version String" | |
id: get_version | |
env: | |
GITHUB_REF: ${{ github.ref }} | |
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/} | |
shell: bash | |
- name: "Generate Python Package" | |
run: python setup.py sdist | |
- name: "Create Draft Release on GitHub" | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ steps.get_version.outputs.VERSION }} | |
release_name: Version ${{ steps.get_version.outputs.VERSION }} | |
draft: true | |
- name: "Publish Distribution to PyPI" | |
uses: pypa/gh-action-pypi-publish@master | |
with: | |
password: ${{ secrets.pypi_password }} |