Skip to content

Commit

Permalink
ci: fix report filtering (dagger#9517)
Browse files Browse the repository at this point in the history
* ci: fix report filtering

Signed-off-by: Justin Chadwell <[email protected]>

* ci: fix release report link formatting

Signed-off-by: Justin Chadwell <[email protected]>

---------

Signed-off-by: Justin Chadwell <[email protected]>
  • Loading branch information
jedevc authored Feb 6, 2025
1 parent 859e82d commit 736eabb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: |
REPORT="/tmp/release-report"
cat $REPORT | tee $GITHUB_STEP_SUMMARY
if grep -q "[!CAUTION]" "$REPORT"; then
if grep -q '\[!CAUTION\]' "$REPORT"; then
# workaround for https://github.com/dagger/dagger/issues/8421
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion releaser/report.md.tmpl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dagger {{ with .Version -}}
[{{ . }}](https://github.com/dagger/dagger/releases/tag/{{ . }})
{{- else -}}
[`{{ .Ref }}` (`{{ .Commit }}`])(https://github.com/dagger/dagger/commit/{{ .Commit }})
[`{{ .Ref }}` (`{{ .Commit }}`)](https://github.com/dagger/dagger/commit/{{ .Commit }})
{{- end }}

*Ran at {{ .Date }}*
Expand Down

0 comments on commit 736eabb

Please sign in to comment.