We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c127f1 commit 8724aefCopy full SHA for 8724aef
.github/workflows/check-shoutrrr.yaml
@@ -15,7 +15,7 @@ jobs:
15
- name: Extract current version from Dockerfile
16
id: local
17
run: |
18
- RAW=$(grep -oP 'ARG SHOUTRRR_VERSION="?(\K[0-9.]+)(?="?)' docker/app/Dockerfile)
+ RAW=$(sed -n 's/.*ARG SHOUTRRR_VERSION="\{0,1\}\([0-9.]*\)".*/\1/p' docker/app/Dockerfile)
19
CURRENT="v$RAW"
20
echo "current=$CURRENT" >> "$GITHUB_OUTPUT"
21
@@ -42,7 +42,7 @@ jobs:
42
TITLE: "New Shoutrrr release available: ${{ steps.upstream.outputs.latest }}"
43
BODY: |
44
A new version of **Shoutrrr** has been released.
45
-
+
46
- Current version: ${{ steps.local.outputs.current }}
47
- Latest version: ${{ steps.upstream.outputs.latest }}
48
0 commit comments