Skip to content

Commit

Permalink
workflows for tag- and pre-releases
Browse files Browse the repository at this point in the history
  • Loading branch information
bigoulours committed May 18, 2023
1 parent fac83bf commit e46b0f2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
22 changes: 22 additions & 0 deletions .github/workflows/release_tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "tagged-release"

on:
push:
tags:
- "v*"

jobs:
tagged-release:
name: "Tagged Release"
runs-on: "ubuntu-latest"

steps:
# ...
- name: "Build & test"
run: |
echo "done!"
- uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
author='bigoulours',
description = 'API Wrapper to interact with slskd',
python_requires='>=3.7',
license_files = ('LICENSE.md',),
license='GNU Affero General Public License v3.0',
)

0 comments on commit e46b0f2

Please sign in to comment.