diff --git a/.github/images/entrypoint.sh b/.github/images/entrypoint.sh index 0abd6c9..ac74889 100644 --- a/.github/images/entrypoint.sh +++ b/.github/images/entrypoint.sh @@ -48,5 +48,3 @@ echo -e "$MESSAGE" echo "status=${STATUS}" >>${GITHUB_OUTPUT} echo "message=${MESSAGE}" >> ${GITHUB_OUTPUT} - -tail -f /dev/null \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1921d97..15a3935 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,13 +49,12 @@ jobs: - name: Test the RIT Container Action id: test-container - env: - RSKJ_BRANCH: 'master' - FEDERATOR_BRANCH: 'master' run: | - docker run -v /private/var \ - --env RSKJ_BRANCH="${{ env.RSKJ_BRANCH }}" \ - --env FEDERATOR_BRANCH="${{ env.FEDERATOR_BRANCH }}" \ + docker run \ + --env RSKJ_BRANCH="master" \ + --env FEDERATOR_BRANCH="master" \ + --env "GITHUB_OUTPUT=/github-output" \ + -v "$GITHUB_OUTPUT:/github-output" \ --rm ${{ env.TEST_TAG }} - name: Build the RIT Action Container Image