Skip to content

Commit 4204a13

Browse files
authored
Update release.yaml
1 parent c953383 commit 4204a13

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/release.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ jobs:
5252
shell: bash
5353
run: |
5454
rm -rf .git/
55-
tar cfJ ${{ steps.tag.outputs.out }}.tar.xz . --transform "s,^,${{ steps.tag.outputs.out }}/," * || echo "Might have failed"
55+
56+
mkdir "${{ steps.tag.outputs.out }}" || exit
57+
mv * ${{ steps.tag.outputs.out }}/ || echo "Errors in move"
58+
mv .* "${{ steps.tag.outputs.out }}" || echo "Errors in move"
59+
60+
tar cfJ ${{ steps.tag.outputs.out }}.tar.xz ${{ steps.tag.outputs.out }} || echo "Might have failed"
5661
- name: Create Release
5762
uses: softprops/action-gh-release@v2
5863
with:

0 commit comments

Comments
 (0)