File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -51,17 +51,17 @@ jobs:
51
51
- name : Compress files
52
52
run : |
53
53
# Compress the Windows executable to zip
54
- zip -r exec/ deckard-windows-amd64.exe.zip exec/deckard-windows-amd64.exe
54
+ zip -r -j deckard-windows-amd64.exe.zip exec/deckard-windows-amd64.exe
55
55
56
56
# Compress the Linux executable to tar.gz
57
- tar -czvf exec/ deckard-linux-amd64.tar.gz exec/ deckard-linux-amd64
57
+ tar -czvf deckard-linux-amd64.tar.gz -C exec deckard-linux-amd64
58
58
59
59
- name : Publish
60
60
uses : softprops/action-gh-release@v1
61
61
with :
62
62
files : |
63
- exec/ deckard-windows-amd64.exe.zip
64
- exec/ deckard-linux-amd64.tar.gz
63
+ deckard-windows-amd64.exe.zip
64
+ deckard-linux-amd64.tar.gz
65
65
66
66
release-deckard-image :
67
67
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments