Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ jobs:
PREVIOUS_VERSION=$(git show HEAD~1:package.json | jq -r .version)

if [[ "$CURRENT_VERSION" != "$PREVIOUS_VERSION" ]]; then
echo "Version has been updated. Proceeding to publish."
echo "::notice file=package.json,line=3::Version has been updated. Proceeding to publish."
echo "detected=true" >> $GITHUB_OUTPUT
else
echo "Version has not changed. Skipping publish."
echo "::notice::Version has not changed. Skipping publish."
echo "detected=false" >> $GITHUB_OUTPUT
fi

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recursive-timeout",
"version": "0.0.9",
"version": "0.0.10",
"author": "Dmytro Parzhytskyi <parzhitsky@gmail.com> (https://parzh.com)",
"description": "A simple solution to a classic problem: setInterval implemented as recursive setTimeout calls.",
"license": "MIT",
Expand Down