Skip to content

feat: use created instead of now() (#6) #8

feat: use created instead of now() (#6)

feat: use created instead of now() (#6) #8

Workflow file for this run

name: Upload loggingx-py to PyPI
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.8"
- name: Install tools
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Build and Publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m build
twine upload dist/*
release:
name: Publish auto release
runs-on: ubuntu-latest
needs: [publish]
permissions:
contents: write
steps:
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true