Skip to content

Commit

Permalink
Merge pull request #90 from bact/replace-setout
Browse files Browse the repository at this point in the history
Replace set-output with $GITHUB_OUTPUT
  • Loading branch information
bact authored Nov 11, 2024
2 parents 95821c4 + 6d65be0 commit 07893ee
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ on:
- '.github/workflows/build-python-wheels.yml'
release:
types: [published]
# Manual run
workflow_dispatch: {}
workflow_dispatch: {} # manual run

jobs:
echo_github_env:
Expand Down
2 changes: 1 addition & 1 deletion build_tools/github/check_build_trigger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ COMMIT_MSG=$(git log --no-merges -1 --oneline)
if [[ "$GITHUB_EVENT_NAME" == "workflow_dispatch" ||
"$GITHUB_EVENT_NAME" == "release" ||
"$COMMIT_MSG" =~ "[cd build]" ]]; then
echo "::set-output name=build::true"
echo "build=true" >> $GITHUB_OUTPUT
fi
2 changes: 1 addition & 1 deletion nlpo3-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nlpo3-python"
version = "1.3.1"
version = "1.3.2-dev"
edition = "2018"
license = "Apache-2.0"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion nlpo3-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "nlpo3"
version = "1.3.1"
version = "1.3.2-dev"
description = "Python binding for nlpO3 Thai language processing library in Rust"
readme = "README.md"
requires-python = ">=3.7"
Expand Down
2 changes: 1 addition & 1 deletion nlpo3-python/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[metadata]
name = nlpo3
version = 1.3.1
version = 1.3.2-dev
description = Python binding for nlpO3 Thai language processing library
long_description =
Python binding for nlpO3, a Thai natural language processing library in Rust.
Expand Down

0 comments on commit 07893ee

Please sign in to comment.