Skip to content

Commit

Permalink
Minor CI fixes (#290)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwiname authored May 14, 2024
1 parent 017c1dd commit a3ef0f3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ jobs:
TAG_NAME=${GITHUB_REF#refs/tags/}
if [[ $TAG_NAME == "node-ethereum/"* ]]
then
echo "::set-output name=changes_found::true"
echo "changes_found=true" >> "$GITHUB_OUTPUT"
else
echo "::set-output name=changes_found::false"
echo "changes_found=false" >> "$GITHUB_OUTPUT"
fi
else
echo "::set-output name=changes_found::true"
echo "changes_found=true" >> "$GITHUB_OUTPUT"
fi
node-build-push-docker-onfinality:
needs: check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
run: |
if [ -n "${{ github.event.head_commit.message }}" ]
then
echo "commit-message=${{ github.event.head_commit.message }}" >> "$GITHUB_OUTPUT"
echo "commit-message=\"${{ github.event.head_commit.message }}\"" >> "$GITHUB_OUTPUT"
else
echo "commit-message=\"$(git log -1 --pretty=%B | head -n 1)\"" >> "$GITHUB_OUTPUT"
fi
Expand Down
2 changes: 2 additions & 0 deletions scripts/update_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ for dir in packages/*; do
if [ -d "$dir" ] && [[ $(git ls-files "$dir") ]]; then
prepare_package_release "$dir"
fi

git add .yarn/versions
done

# prepare_package_release "$1"

0 comments on commit a3ef0f3

Please sign in to comment.