You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The changes in the `build.yml` file include the addition of commands to list the contents of the `./artifacts` directory and to create zip archives for each subdirectory within `./artifacts`. Specifically, the script now loops through all directories in `./artifacts`, removes the trailing slash from each directory name, and creates a zip archive with the same name as the folder using the `7z` command.
The release step has been modified to upload these newly created zip files instead of individual files. The `files` section of the `softprops/action-gh-release@v2` action now includes a wildcard pattern `./artifacts/*.zip` to match all zip files in the `./artifacts` directory.
These changes streamline the release process by zipping the contents of each subdirectory in `./artifacts` and uploading these zip files as part of the release. This reduces the number of individual files specified in the release configuration and simplifies artifact management.
0 commit comments