Skip to content
This repository has been archived by the owner on Mar 26, 2022. It is now read-only.

Commit

Permalink
Release the first official version
Browse files Browse the repository at this point in the history
  • Loading branch information
BreezeWhite committed Sep 24, 2021
1 parent 86e8b31 commit f5bbd0b
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Publish

on: push
on:
push:
tags:
- 'v*'

jobs:
build:
Expand All @@ -19,8 +22,8 @@ jobs:
python setup.py bdist_wheel
- name: Create release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
prerelease: true
files: |
dist/*.whl
draft: false
prerelease: false
files: dist/*.whl

0 comments on commit f5bbd0b

Please sign in to comment.