From 74fba4f23eaf4234b2d3543388c00cdc08e8ad40 Mon Sep 17 00:00:00 2001 From: "Waylon S. Walker" Date: Thu, 17 Apr 2025 09:41:18 -0500 Subject: [PATCH] add content --- .github/workflows/release-pypi.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/release-pypi.yaml b/.github/workflows/release-pypi.yaml index e69de29..b5d156f 100644 --- a/.github/workflows/release-pypi.yaml +++ b/.github/workflows/release-pypi.yaml @@ -0,0 +1,21 @@ +name: Release Krayt +on: + workflow_dispatch: + push: + paths: + - "krayt/**" + - "pyproject.toml" +env: + HATCH_INDEX_USER: __token__ + HATCH_INDEX_AUTH: ${{ secrets.pypi_password }} +jobs: + release-markata: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: waylonwalker/hatch-action@v4 + with: + before-command: "lint-format" + env: + # required for gh release + GH_TOKEN: ${{ github.token }}