Skip to content

Commit

Permalink
Do not wrap uploaded executables in a directory
Browse files Browse the repository at this point in the history
Within the tar file
  • Loading branch information
ccouzens committed May 7, 2023
1 parent d6787d3 commit 1f1384d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ jobs:
path: figma-file-tools-X64-Linux
- run: "chmod +x figma-file-tools-X64-Linux/figma-file-tools"
- run:
"tar czf figma-file-tools-X64-Linux.tar.gz
figma-file-tools-X64-Linux/figma-file-tools"
tar --create --gzip --file figma-file-tools-X64-Linux.tar.gz
--directory figma-file-tools-X64-Linux figma-file-tools
- uses: actions/download-artifact@v3
with:
name: figma-file-tools-X64-Windows
Expand All @@ -49,8 +49,8 @@ jobs:
path: figma-file-tools-X64-macOS
- run: "chmod +x figma-file-tools-X64-macOS/figma-file-tools"
- run:
"tar czf figma-file-tools-X64-macOS.tar.gz
figma-file-tools-X64-macOS/figma-file-tools"
tar --create --gzip --file figma-file-tools-X64-macOS.tar.gz
--directory figma-file-tools-X64-macOS figma-file-tools
- uses: ncipollo/release-action@v1
with:
artifacts: "figma-file-tools-X64-Linux.tar.gz,figma-file-tools-X64-Windows/figma-file-tools.exe,figma-file-tools-X64-macOS.tar.gz"

0 comments on commit 1f1384d

Please sign in to comment.