Skip to content

Commit

Permalink
Merge tag 'v0.15.0'
Browse files Browse the repository at this point in the history
v0.15.0
  • Loading branch information
suminb committed Aug 6, 2024
2 parents e892eda + bf50ea5 commit d5caf7a
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
51 changes: 51 additions & 0 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Build

on:
push:
tags:
- v*

jobs:
build_dist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Build dist and wheel
run: pipx run build --sdist --wheel

- uses: actions/upload-artifact@v4
with:
name: cibw-dist
path: dist/*

# upload_pypi:
# needs: [build_dist]
# runs-on: [self-hosted, linux, x64, cpu-only]
# environment: release
# permissions:
# id-token: write
# steps:
# - uses: actions/download-artifact@v4
# with:
# pattern: cibw-*
# path: dist
# merge-multiple: true

# - uses: pypa/gh-action-pypi-publish@release/v1

upload_release:
needs: [build_dist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true

- name: Release
uses: softprops/action-gh-release@v1
with:
files: dist/*
2 changes: 1 addition & 1 deletion hanja/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__all__ = ["is_hanja", "is_valid_mode", "split_hanja", "translate"]
__author__ = "Sumin Byeon"
__email__ = "[email protected]"
__version__ = "0.14.1"
__version__ = "0.15.0"


# Copied from https://wiki.python.org/moin/PythonDecoratorLibrary
Expand Down

0 comments on commit d5caf7a

Please sign in to comment.