Skip to content

Commit

Permalink
Merge pull request #20 from mizunashi-mana/bump-version
Browse files Browse the repository at this point in the history
Bump deb version
  • Loading branch information
mizunashi-mana committed Dec 6, 2023
2 parents e0f17d3 + de93c1c commit 9bf1a45
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion deb/files/changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
firefish (1.0.5+rc-d202312060002+beta) UNRELEASED; urgency=medium
firefish (1.0.5+rc-d202312060003+release) unstable; urgency=medium

* Renewal release of Debian packaging.
* Use dh-make and change version policy.
* Change the config path (/etc/firefish/default.yml -> /etc/firefish/config.yml).
* Upstream Release Note: https://git.joinfirefish.org/firefish/firefish/-/releases/v1.0.5-rc

-- Mizunashi Mana <contact@mizunashi.work> Mon, 04 Dec 2023 09:00:47 +0900
7 changes: 6 additions & 1 deletion deb/scripts/test-service
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,9 @@ for i in `seq 1 130`; do
sleep 5
done

curl --fail -sL http://localhost:3000 | grep 'Thank you for using Firefish!' >/dev/null
HOME_HTML="$(curl --fail -sL http://localhost:3000)"
if ! echo "$HOME_HTML" | grep 'Thank you for using Firefish!' >/dev/null; then
echo 'Failed to find "Thank you for using Firefish!" in home page'
echo "$HOME_HTML"
exit 1
fi

0 comments on commit 9bf1a45

Please sign in to comment.