Skip to content

Commit

Permalink
Fix upload zip on the repo
Browse files Browse the repository at this point in the history
  • Loading branch information
seiwan committed Aug 12, 2024
1 parent 2a0bfc3 commit bf99d64
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ps8-build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,22 @@ jobs:
- name: Install composer dependencies
run: composer install --no-dev -o

- name: Create directory with repo name and copy files
run: |
repo_name="${{ github.event.repository.name }}"
mkdir "$repo_name"
shopt -s dotglob nullglob
for file in *; do
if [ "$file" != "$repo_name" ]; then
mv "$file" "$repo_name/"
fi
done
- name: Create & upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: ${{ env.ZIP_NAME }}
path: ../
path: .

update_release_draft_production:
name: PRODUCTION - Update release draft
Expand Down

0 comments on commit bf99d64

Please sign in to comment.