From 874390746c988a15a3228ed5a77bdeebfe7e7dc8 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Thu, 9 May 2024 14:19:35 +1200 Subject: [PATCH] FIX Ignore differences in silverstripe/admin dist files --- action.yml | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/action.yml b/action.yml index af81b58..8708620 100644 --- a/action.yml +++ b/action.yml @@ -153,6 +153,9 @@ runs: - name: Run JS tests if: ${{ inputs.js == 'true' }} shell: bash + env: + GITHUB_REF_NAME: ${{ github.ref_name }} + GITHUB_REPOSITORY: ${{ github.repository }} run: | echo "Running JS tests" if [[ ! -f package.json ]]; then @@ -216,24 +219,11 @@ runs: echo "git diff found modified files when it should not have:" echo $GIT_DIFF echo "sha1sum of files that are different:" - COPIED_COUNT=0 for FILEPATH in $(git diff --cached --name-only); do if [[ -f $FILEPATH ]]; then sha1sum $FILEPATH - # Only copy if the file is less than 10 megabytes to prevent malicous behaviour - # Only copy a max of 10 files, also to prevent malicious behaviour - MEGABYTES=$(ls -l --b=M "$DIST_DIR/$FILEPATH" | cut -d " " -f5 | sed "s/M//") - if (($MEGABYTES >= 10)); then - echo "File $FILEPATH is larger than 10 megabytes, not copying" - elif (($COPIED_COUNT >= 10)); then - echo "More than 10 files have been copied, not copying $FILEPATH" - else - cp "$DIST_DIR/$FILEPATH" artifacts - COPIED_COUNT=$((COPIED_COUNT+1)) - fi fi done - echo "Files that are different have been copied to artifacts directory" exit 1 fi fi