Instructions for generating a release:
- Merge PR with changes into main branch
- Generate a new GIT release from main branch
- Checkout latest repo contents from main branch
- Run the following command:
for folder in $(ls -d */ | tr -d /)
do
cd $folder
COPYFILE_DISABLE=1 tar --numeric-owner -czvf ../${folder}.tgz *
cd ..
done
- Upload the generated files to the release created in step 2