Skip to content

Commit

Permalink
ci: create dir before packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
gao-sun committed Feb 15, 2025
1 parent 5a98736 commit 273c84f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:

- name: Create artifact
run: |
zip -X -r logto-plugin.zip . -x "*/node_modules/*" ".*" "*/.*" composer.* README.md renovate.json
mkdir ~/logto
cp -r . ~/logto
cd ~
zip -X -r logto-plugin.zip logto/ -x "*/node_modules/*" ".*" "*/.*" composer.* README.md renovate.json
cd -
mv ~/logto-plugin.zip .
- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 273c84f

Please sign in to comment.