1.3.1 #37
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
name: prerelease | |
on: | |
release: | |
types: [ prereleased ] | |
jobs: | |
package: | |
name: Build and Package | |
runs-on: ubuntu-20.04 | |
outputs: | |
version: ${{ steps.version.outputs.value }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Version | |
id: version | |
run: echo ::set-output name=value::${GITHUB_REF#refs/*/} | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wheel | |
- name: Build package | |
run: make package version=${{ steps.version.outputs.value }} | |
- name: Upload Pipeline Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
retention-days: 1 | |
name: built-artifacts | |
path: dist/ | |
upload-assets: | |
name: Upload Assets to Release | |
runs-on: ubuntu-20.04 | |
needs: package | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: built-artifacts | |
path: dist/ | |
- uses: AButler/[email protected] | |
with: | |
files: 'dist/*' | |
repo-token: ${{ secrets.ACCESS_TOKEN }} | |
release-tag: ${{ needs.package.outputs.version }} | |
publish-pypi: | |
name: Publish packages to PyPi | |
runs-on: ubuntu-20.04 | |
needs: package | |
steps: | |
- uses: actions/download-artifact@v3 | |
with: | |
name: built-artifacts | |
path: dist/ | |
- uses: pypa/[email protected] | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |