We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04da224 commit db58d52Copy full SHA for db58d52
.github/workflows/build.yaml
@@ -187,11 +187,15 @@ jobs:
187
uses: actions/download-artifact@v3
188
with:
189
name: github-outputs
190
-# - name: Unpack Integration Plugin Artifact
191
-# run: |
192
-# tar -xvf github-output.tar
+ - name: Unpack Integration Plugin Artifact
+ run: |
+ tar -xvf github-output.tar
193
+ - name: Pack folder content into a zip file for release
194
195
+ cd github-output
196
+ zip -r github-output.zip .
197
- name: Release Integration Plugin
198
uses: softprops/action-gh-release@v2
199
- files: github-output.tar
200
+ files: ./github-output/github-output.zip
201
tag_name: ${{ needs.build.outputs.latest_tag }}
0 commit comments