Skip to content

Commit 48c71a9

Browse files
Fixed release note filename
1 parent 3a4f715 commit 48c71a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker-publish-webkitwebdriver.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ jobs:
9696
echo "$RELEASE_TAG is published to Docker Hub at [$IMAGE_NAME](https://hub.docker.com/r/$IMAGE_NAME/tags) and contains the following resources: " > release_notes.md
9797
echo "" >> release_notes.md
9898
MINIBROWSER_VERSION=`docker run --rm $IMAGE_NAME:latest bash -c "cd /opt/bin && bash entry_point.sh & sleep 5 && /usr/lib/*-linux-gnu/webkit2gtk-4.0/MiniBrowser --version" | tail -n 1`
99-
echo "MiniBrowser: $MINIBROWSER_VERSION" >> release_notes
100-
echo "WebKitWebDriver: $MINIBROWSER_VERSION" >> release_notes
99+
echo "MiniBrowser: $MINIBROWSER_VERSION" >> release_notes.md
100+
echo "WebKitWebDriver: $MINIBROWSER_VERSION" >> release_notes.md
101101
if echo "$IMAGE_NAME" | grep -q "epiphany"; then
102102
EPIPHANY_VERSION=`docker run --rm $IMAGE_NAME:latest bash -c "epiphany --version" | tail -n 1`
103-
echo "Epiphany: $EPIPHANY_VERSION" >> release_notes
103+
echo "Epiphany: $EPIPHANY_VERSION" >> release_notes.md
104104
fi
105105
REPO=`echo $GITHUB_REPOSITORY | tr '/' '\n' | tail -n 1`
106106
go install github.com/github-release/[email protected]

0 commit comments

Comments
 (0)