Skip to content

Commit

Permalink
Fix mv build
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexP11223 committed Jul 19, 2024
1 parent 430813a commit 4d62458
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 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 All @@ -245,6 +247,7 @@ jobs:
with:
name: ${{ steps.set-artifact-name.outputs.artifact }}
path: |
shopt -s extglob
build/
!build/**/node_modules
create-plugin-archive:
Expand Down

0 comments on commit 4d62458

Please sign in to comment.