Skip to content

Commit

Permalink
edited workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuOnuki committed Dec 31, 2023
1 parent eea5f40 commit 7836cc1
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .github/workflows/publish-to-test-pypi.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI

on: push

jobs:
build:
name: Build distribution 📦
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/

publish-to-testpypi:
name: Publish Python 🐍 distribution 📦 to TestPyPI
needs:
- build
runs-on: ubuntu-latest

environment:
name: testpypi
url: https://test.pypi.org/p/pylogger2azblob

permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ This repository provides a Python logging handler, BlobStorageTimedRotatingFileH
.
├── .github
│ └── workflows
│ └── publish-to-test-pypi.yaml (publish testpypi.org of GithubAction.)
│ └── pytest_workflow.yaml (pytest_workflow of GithubAction.)
├── pylogger2azblob
│ └── handlers.py (Main Python module with the Azure Blob Storage loggingimplementation.)
Expand Down
5 changes: 5 additions & 0 deletions pylogger2azblob/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from pylogger2azblob.handlers import BlobStorageTimedRotatingFileHandler # published class

__all__ = [
'BlobStorageTimedRotatingFileHandler',
]
27 changes: 27 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[project]
name = "pylogger2azblob"
version = "0.0.1"
authors = [{name="Kazuya Onuki"}]
description = "a Python logging handler, BlobStorageTimedRotatingFileHandler, that extends the functionality of the built-in TimedRotatingFileHandler."
readme = "README.md"
requires-python = ">=3.12.0"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.12"
]
keywords = ["azure", "blob", "logging"]
dependencies = [
"azure-storage-blob==12.19.0",
"azure-identity==1.15.0",
"python-dotenv==1.0.0"
]
[project.optional-dependencies] # only when development
dev = [
"pytest==7.4.3",
"build",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/KazuOnuki/pylogger2azblob"

0 comments on commit 7836cc1

Please sign in to comment.