diff --git a/.github/workflows/module-plugin-test.yml b/.github/workflows/module-plugin-test.yml index 45c04e0..cbecaab 100644 --- a/.github/workflows/module-plugin-test.yml +++ b/.github/workflows/module-plugin-test.yml @@ -199,11 +199,13 @@ jobs: - name: Sync Module build files to node_modules dir if: ${{ inputs.sync-npm-package }} run: | + echo 'The only winning move is not to play.' > vendor/${{ inputs.module-repo }}/build/test.txt echo "SOURCE vendor/${{ inputs.module-repo }}/build" ls -l vendor/${{ inputs.module-repo }}/build echo "DESTINATION node_modules/@${{ inputs.module-repo }}/build" ls -l node_modules/@${{ inputs.module-repo }}/build - cp -r -f -p vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build + echo "Updating DESTINATION from SOURCE?" + cp -r -f vendor/${{ inputs.module-repo }}/build node_modules/@${{ inputs.module-repo }}/build echo "UPDATED DESTINATION node_modules/@${{ inputs.module-repo }}/build" ls -l node_modules/@${{ inputs.module-repo }}/build - name: Build Plugin