Skip to content

Commit 8724aef

Browse files
ISSUE #1568: Fix Shoutrrr workflow
1 parent 0c127f1 commit 8724aef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check-shoutrrr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Extract current version from Dockerfile
1616
id: local
1717
run: |
18-
RAW=$(grep -oP 'ARG SHOUTRRR_VERSION="?(\K[0-9.]+)(?="?)' docker/app/Dockerfile)
18+
RAW=$(sed -n 's/.*ARG SHOUTRRR_VERSION="\{0,1\}\([0-9.]*\)".*/\1/p' docker/app/Dockerfile)
1919
CURRENT="v$RAW"
2020
echo "current=$CURRENT" >> "$GITHUB_OUTPUT"
2121
@@ -42,7 +42,7 @@ jobs:
4242
TITLE: "New Shoutrrr release available: ${{ steps.upstream.outputs.latest }}"
4343
BODY: |
4444
A new version of **Shoutrrr** has been released.
45-
45+
4646
- Current version: ${{ steps.local.outputs.current }}
4747
- Latest version: ${{ steps.upstream.outputs.latest }}
4848

0 commit comments

Comments
 (0)