Skip to content

Commit

Permalink
ci release action
Browse files Browse the repository at this point in the history
  • Loading branch information
JleMyP committed May 8, 2021
1 parent c0f680e commit 1654dd3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: release
on:
push:
tags:
- 'v*.*.*'

jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install poetry
- run: poetry build
- uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1654dd3

Please sign in to comment.