Skip to content

Commit

Permalink
Trying to fix the output to GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
fmacleal committed Jul 17, 2024
1 parent f570be3 commit 9ae1809
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/images/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LABEL Description="Custom RSK node image to execute Rootstock Integration Tests"

RUN apt-get update \
&& apt-get install -y --no-install-recommends \
wget gnupg2 curl git ca-certificates mocha \
wget gnupg2 curl git ca-certificates mocha gosu \
&& apt clean

# -- nodeJs ---------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions .github/images/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ else
fi
echo -e "$MESSAGE"

echo "status=${STATUS}" >> ${GITHUB_OUTPUT}
echo "message=${MESSAGE}" >> ${GITHUB_OUTPUT}
gosu echo "status=${STATUS}" >> ${GITHUB_OUTPUT}
gosu echo "message=${MESSAGE}" >> ${GITHUB_OUTPUT}

if [ $STATUS -ne 0 ]; then
exit 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
--env INPUT_POWPEG_NODE_BRANCH="master" \
--env INPUT_RIT_BRANCH="main" \
--env INPUT_RIT_LOG_LEVEL="info" \
--env "GITHUB_OUTPUT=/github-output" \
--env GITHUB_OUTPUT="/github-output" \
-v "$GITHUB_OUTPUT:/github-output" \
--rm ${{ env.TEST_TAG }}
Expand Down

0 comments on commit 9ae1809

Please sign in to comment.