Skip to content

Commit 9536df4

Browse files
committed
ci: use tar.gz for release archives to preserve file permissions
1 parent d7281b4 commit 9536df4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ jobs:
3434
cargo build --release --target ${{ matrix.target }}
3535
fi
3636
- name: Package binary
37-
run: zip ${{ matrix.artifact_name }}.zip -j target/${{ matrix.target }}/release/async-bash-mcp
37+
run: tar -czf ${{ matrix.artifact_name }}.tar.gz -C target/${{ matrix.target }}/release async-bash-mcp
3838
- name: Upload binary
3939
uses: softprops/action-gh-release@v1
4040
with:
41-
files: ${{ matrix.artifact_name }}.zip
41+
files: ${{ matrix.artifact_name }}.tar.gz

0 commit comments

Comments
 (0)