Skip to content

Commit

Permalink
Fix upload zip on the repo (#1264)
Browse files Browse the repository at this point in the history
  • Loading branch information
seiwan authored Aug 19, 2024
1 parent 3519cd3 commit 8743ab6
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/ps8-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
- name: Install composer dependencies
run: composer install --no-dev -o

- name: Create directory with repo name and copy files
- name: Create directory with repo name and move files
run: |
repo_name="${{ github.event.repository.name }}"
mkdir "$repo_name"
Expand All @@ -160,6 +160,16 @@ jobs:
name: ${{ env.ZIP_NAME }}
path: .

- name: Move files at root project
run: |
cd "${{ github.event.repository.name }}"
shopt -s dotglob nullglob
for file in *; do
mv "$file" ../
done
cd ../
rm -Rf "${{ github.event.repository.name }}"
update_release_draft_production:
name: PRODUCTION - Update release draft
runs-on: ubuntu-latest
Expand Down

0 comments on commit 8743ab6

Please sign in to comment.