Skip to content

Commit d869b37

Browse files
committed
Fix publishing?
1 parent ce6549e commit d869b37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,9 @@ jobs:
149149
CURRENT=$(cat dune-project | grep -oE '\(version [0-9]+\.[0-9]+\.[0-9]+\)' | grep -o '\d\+.\d\+.\d\+');
150150
if [ "$REMOTE" != "$CURRENT" ]
151151
then
152-
echo "::set-output name=shouldPublish::true";
152+
echo "shouldPublish=true" >> "$GITHUB_OUTPUT";
153153
else
154-
echo "::set-output name=shouldPublish::false";
154+
echo "shouldPublish=false" >> "$GITHUB_OUTPUT"
155155
fi
156156
157157
- name: Publish

0 commit comments

Comments
 (0)