Skip to content

Commit

Permalink
Merge pull request #63 from anarkiwi/doc
Browse files Browse the repository at this point in the history
Doc
  • Loading branch information
anarkiwi authored Mar 14, 2022
2 parents 4c01731 + 0ca7682 commit 480e1c5
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build python packages for release

on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'

env:
RELEASE_PY_VER: 3.8

jobs:
python-package:
name: "Build and publish python packages"
runs-on: ubuntu-latest
environment:
name: "release"
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up python-${{ env.RELEASE_PY_VER }}
uses: actions/setup-python@v3
with:
python-version: ${{ env.RELEASE_PY_VER }}
- name: Build python package
run: python3 setup.py sdist
- name: Publish python package to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
name = desidulate
author = Josh Bailey
author-email = [email protected]
description = C64/SID tune decompiler
url = https://github.com/anarkiwi/desidulate
platform = any
classifier =
Development Status :: 4 - Beta
Expand Down

0 comments on commit 480e1c5

Please sign in to comment.