We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec63df commit f67648dCopy full SHA for f67648d
.github/workflows/release.yml
@@ -47,8 +47,15 @@ jobs:
47
# Run composer install to update vendors
48
composer install
49
50
- # Create a zip file with the source code including asasvirtuais-wp.php at root and vendors
51
- zip -r "asasvirtuais-wp.zip" asasvirtuais-wp.php vendor src
+ # Create a temporary directory and copy the required files
+ mkdir asasvirtuais-wp
52
+ cp -r asasvirtuais-wp.php vendor src asasvirtuais-wp/
53
+
54
+ # Create a zip file with the temporary directory, ensuring the structure is preserved
55
+ zip -r "asasvirtuais-wp.zip" asasvirtuais-wp
56
57
+ # Remove the temporary directory
58
+ rm -rf asasvirtuais-wp
59
60
# Commit and push the version updates
61
git config --global user.email "39817766+asas-virtuais@users.noreply.github.com"
0 commit comments