Skip to content

Commit

Permalink
chore: Automatically create github release after tagging
Browse files Browse the repository at this point in the history
  • Loading branch information
last-partizan committed May 27, 2022
1 parent f550f7d commit 4b1adbe
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Release
on:
push:
tags:
- v*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
Release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Build artifacts
run: |
pip install -q wheel
python setup.py sdist bdist_wheel
- name: Create release
uses: softprops/action-gh-release@v1
with:
files: dist/*
File renamed without changes.

0 comments on commit 4b1adbe

Please sign in to comment.