Skip to content

Commit b172566

Browse files
committed
workflows: drop awk -e from release job
ubuntu-slim has mawk, which doesn't support -e. Signed-off-by: Benjamin Gilbert <bgilbert@cs.cmu.edu>
1 parent 3a3bcc5 commit b172566

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/java.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,7 @@ jobs:
129129
GITHUB_TOKEN: ${{ github.token }}
130130
run: |
131131
version=$(echo "${{ github.ref_name }}" | sed "s/^v//")
132-
awk -e '/^## / && ok {exit}' \
133-
-e '/^## / {ok=1; next}' \
134-
-e 'ok {print}' \
132+
awk '/^## / && ok {exit} /^## / {ok=1; next} ok {print}' \
135133
CHANGELOG.md > changes
136134
gh release create --prerelease --verify-tag \
137135
--repo "${{ github.repository }}" \

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Notable Changes in OpenSlide Java
22

3-
## Version 0.13.2, 2026-06-07
3+
## Version 0.13.3, 2026-06-07
44

55
* Add constant for `openslide.barcode` property
66

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55

6-
<version>0.13.2</version>
6+
<version>0.13.3</version>
77

88
<groupId>org.openslide</groupId>
99
<artifactId>openslide-java</artifactId>

0 commit comments

Comments
 (0)