Skip to content

Commit 2d95a18

Browse files
committed
fix: release structure
1 parent ad3eae6 commit 2d95a18

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ jobs:
8686
- name: Pack output
8787
working-directory: .
8888
run: |
89-
find ./github-output \( -type f -o -type d \) -printf "%P\n" | tar -czf integration-plugin.tar --no-recursion -C ./github-output -T -
90-
- name: Upload Integration Plugin Artifact
89+
find ./github-output \( -type f -o -type d \) -printf "%P\n" | tar -czf github-output.tar --no-recursion -C ./github-output -T -
90+
- name: Upload github outputs artifact
9191
uses: actions/upload-artifact@v3
9292
with:
93-
name: integration-plugin
94-
path: ./integration-plugin/integration-plugin.tar
93+
name: github-outputs
94+
path: ./github-output.tar
9595
retention-days: 1
9696

9797
- name: Set Latest Tag Output
@@ -183,9 +183,9 @@ jobs:
183183
- name: Download Integration Plugin Artifact
184184
uses: actions/download-artifact@v3
185185
with:
186-
name: integration-plugin
186+
name: github-outputs
187187
- name: Release Integration Plugin
188188
uses: softprops/action-gh-release@v2
189189
with:
190-
files: integration-plugin.tar
190+
files: github-output.tar
191191
tag_name: ${{ needs.build.outputs.latest_tag }}

0 commit comments

Comments
 (0)