init
This commit is contained in:
commit
72672d6709
32 changed files with 1651 additions and 0 deletions
20
.github/workflows/release.yml
vendored
Normal file
20
.github/workflows/release.yml
vendored
Normal 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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue