Skip to content

Commit 40247db

Browse files
committed
chore: fixups
1 parent b0d971e commit 40247db

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.github/workflows/publish_tp53.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ jobs:
3232
if: ${{ needs.on-main-branch-check.outputs.on_main == 'true' }}
3333
uses: "./.github/workflows/tests_python.yml"
3434

35+
scala-tests:
36+
name: scala-tests
37+
needs: on-main-branch-check
38+
if: ${{ needs.on-main-branch-check.outputs.on_main == 'true' }}
39+
uses: "./.github/workflows/tests_scala.yml"
40+
3541
build-wheels:
3642
name: build wheels
3743
needs: python-tests

CONTRIBUTING.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,9 @@ For contributing to the Scala command line wrapper and tools see:
1212

1313
# Performing a Release
1414

15-
TODO.
15+
1. Checkout locally the `HEAD` commit on `main`
16+
2. Bump the Python package version with `poetry version #.#.# --directory python`
17+
3. Bump the Scala package version in the `build.sc` with the same version
18+
4. Commit the changes on main with a message like `chore: bump to #.#.#`
19+
5. Tag the commit with `git tag #.#.#`
20+
6. Push the commit and its tag with `git push --tags`

0 commit comments

Comments
 (0)