Feature Description
The current release zips created by GH everytime a new tag is created includes files that are not part of the release, for example:
Contains tests and configuration files, non required for testing or usage of the plugin.

The deploy action would use either:
.disignore
.gitattributes
To exclude files that are going to be deployed so we can safely move .disignore to .gitattributes one of the things to consider is when moving the content into .gitattributes is the fact that the setting export-ignore should be added after each file for example:
/.git export-ignore
/node_modules export-ignore
export-ignore
Files and directories with the attribute export-ignore won’t be added to archive files.
Additional parameters.
Feature Description
The current release zips created by GH everytime a new tag is created includes files that are not part of the release, for example:
Contains tests and configuration files, non required for testing or usage of the plugin.
The deploy action would use either:
.disignore.gitattributesTo exclude files that are going to be deployed so we can safely move
.disignoreto.gitattributesone of the things to consider is when moving the content into.gitattributesis the fact that the settingexport-ignoreshould be added after each file for example:export-ignoreAdditional parameters.