From 3e988492b553a337e842cdebb328b3a138fb7f39 Mon Sep 17 00:00:00 2001 From: Alex Forrence Date: Thu, 26 Aug 2021 22:32:02 -0400 Subject: [PATCH] try adding github release --- .github/workflows/build.yml | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a8c6557..013cace 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,3 +81,8 @@ jobs: uses: pypa/gh-action-pypi-publish@master with: password: ${{ secrets.pypi_password }} + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags') + with: + files: dist/* diff --git a/setup.py b/setup.py index 9f6166f..fd3a85b 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='pygamemode', - version='0.1.1', + version='0.1.2a1', description='A Python wrapper for the GameMode client API.', long_description=long_description, long_description_content_type='text/markdown',