This commit is contained in:
Waylon Walker 2023-03-13 09:42:39 -05:00
commit 72672d6709
No known key found for this signature in database
GPG key ID: 66E2BF2B4190EFE4
32 changed files with 1651 additions and 0 deletions

20
.github/workflows/release.yml vendored Normal file
View file

@ -0,0 +1,20 @@
name: Release
on:
workflow_dispatch:
push:
paths:
- "pyflybygen/**"
- "pyproject.toml"
env:
HATCH_INDEX_USER: __token__
HATCH_INDEX_AUTH: ${{ secrets.pypi_password }}
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: waylonwalker/hatch-action@v3
with:
before-command: "test-lint"
env:
GH_TOKEN: ${{ github.token }}