From 4b2a8b101264065d07b49450104463d7a2e46d14 Mon Sep 17 00:00:00 2001 From: jonasbn Date: Mon, 16 May 2022 20:55:30 +0200 Subject: [PATCH] Changed path, so generated file should be in mounted directory path --- .github/workflows/spelling_action.yml | 8 +------- entrypoint.sh | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/spelling_action.yml b/.github/workflows/spelling_action.yml index 93ce13c8..eb15af8e 100644 --- a/.github/workflows/spelling_action.yml +++ b/.github/workflows/spelling_action.yml @@ -21,14 +21,8 @@ jobs: source_files: README.md CHANGELOG.md task_name: Markdown - - uses: shrink/actions-docker-extract@v1 - id: extract - with: - image: rojopolis/spellcheck-github-actions@0.23.2 - path: /tmp/run-report.txt - - uses: actions/upload-artifact@v3 name: Archive workflow run output with: name: run-report - path: ${{ steps.extract.outputs.destination }} + path: run-report.txt diff --git a/entrypoint.sh b/entrypoint.sh index e34a6c56..dc84edb3 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -88,7 +88,7 @@ fi echo "----------------------------------------------------------------" -pyspelling --config $SPELLCHECK_CONFIG_FILE $TASK_NAME $SOURCES_LIST | tee /tmp/run-report.txt +pyspelling --config $SPELLCHECK_CONFIG_FILE $TASK_NAME $SOURCES_LIST | tee run-report.txt EXITCODE=$?