From 5cc549798b2c6889b401a103f21bbbe0bea6b668 Mon Sep 17 00:00:00 2001 From: pdiakumis Date: Thu, 26 Mar 2026 12:11:19 +1100 Subject: [PATCH] add GHA-based version bumping workflow --- .github/workflows/bump.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/bump.yaml diff --git a/.github/workflows/bump.yaml b/.github/workflows/bump.yaml new file mode 100644 index 0000000..efc1183 --- /dev/null +++ b/.github/workflows/bump.yaml @@ -0,0 +1,19 @@ +name: Bump Version + +on: + workflow_dispatch: + inputs: + version: + description: 'New version (e.g. 0.1.0)' + required: true + type: string + +jobs: + bump: + uses: tidywf/.github/.github/workflows/bump.yaml@main + permissions: + contents: write + with: + pkg_name: nemo + pkg_version: ${{ inputs.version }} + secrets: inherit