File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -110,11 +110,10 @@ jobs:
110110 MODULE="${{ steps.module_info.outputs.module }}"
111111 DIST_PATH="${{ steps.module_data.outputs.dist_path }}"
112112
113- cd "$DIST_PATH"
114- zip -r "../../../${MODULE}.zip" .
113+ (cd "$DIST_PATH" && zip -r "../../../${MODULE}.zip" . -x "*.git*")
115114
116115 echo "Created ${MODULE}.zip"
117- ls -ln "../../../ ${MODULE}.zip"
116+ ls -lh " ${MODULE}.zip"
118117
119118 - name : Create module release
120119 uses : ncipollo/release-action@v1
@@ -124,8 +123,6 @@ jobs:
124123 name : " ${{ steps.module_data.outputs.module_title }} v${{ steps.module_info.outputs.version }}"
125124 makeLatest : false
126125 body : |
127- # ${{ steps.module_data.outputs.module_title }} v${{ steps.module_info.outputs.version }}
128-
129126 ${{ steps.module_data.outputs.module_description }}
130127
131128 ## Installation
@@ -198,9 +195,7 @@ jobs:
198195 with :
199196 artifacts : " release-index/*.json"
200197 tag : ${{ steps.index_version.outputs.tag }}
201- name : " Release Index v${{ steps.index_version.outputs.version }}"
198+ name : " 📚 Release Index v${{ steps.index_version.outputs.version }}"
202199 makeLatest : true
203200 body : |
204- # 📚 Release Index v${{ steps.index_version.outputs.version }}
205-
206201 Updated with: **${{ steps.module_data.outputs.module_title }}** v${{ steps.module_info.outputs.version }}
You can’t perform that action at this time.
0 commit comments