Skip to content

Commit

Permalink
Fix mv build
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Pantechovskis <[email protected]>
  • Loading branch information
AlexP11223 authored Jul 19, 2024
1 parent 430813a commit 8a3610c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-plugin-archive.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ jobs:
sed -i "s/'__composer_autoload_files'/\'__composer_autoload_files_${{ github.sha }}'/g" "build/vendor/composer/autoload_real.php"
- name: Move unchanged code to build directory
if: steps.composer-tools.outputs.php-scoper != '0'
run: mv * build 2>/dev/null
run: |
mkdir build
mv !(build) build
- name: Set artifact name
id: set-artifact-name
Expand Down

0 comments on commit 8a3610c

Please sign in to comment.