Skip to content

v0.0.3b3

v0.0.3b3 #18

Workflow file for this run

name: Pypi Publish
on:
release:
types:
- created
env:
HATCH_INDEX_AUTH: ${{ secrets.HATCH_INDEX_AUTH }}
HATCH_INDEX_USER: ${{ secrets.HATCH_INDEX_USER }}
jobs:
publish:
name: Pypi Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Extract Release Name
run: echo "RELEASE_NAME=$(echo $GITHUB_REF | sed -n 's/refs\/tags\///p')" >> $GITHUB_ENV
- name: Install hatch
run: pip install hatch
- name: Publish to Pypi
run: |
hatch version $RELEASE_NAME
hatch build
hatch publish -n
- name: Checkout Main
run: |
git fetch
git stash
git checkout main
git stash apply
- name: Add & Commit
uses: EndBug/add-and-commit@v9.1.3
with:
add: 'src/flask_muck/__init__.py'
push: origin main --force