Skip to content

Commit 3ca2a6c

Browse files
committed
Rename tarfile extensions to .tar.gz
1 parent 2d8551d commit 3ca2a6c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -146,23 +146,23 @@ jobs:
146146
- run: |
147147
for OS in Linux macOS
148148
do
149-
tar -czf haskell-language-server-$OS-${{ github.event.release.tag_name }}.gz haskell-language-server-$OS-*.gz
149+
tar -czf haskell-language-server-$OS-${{ github.event.release.tag_name }}.tar.gz haskell-language-server-$OS-*.gz
150150
done
151151
152152
- uses: actions/[email protected]
153153
env:
154154
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
155155
with:
156156
upload_url: ${{ github.event.release.upload_url }}
157-
asset_path: haskell-language-server-macOS-${{ github.event.release.tag_name }}.gz
158-
asset_name: haskell-language-server-macOS-${{ github.event.release.tag_name }}.gz
157+
asset_path: haskell-language-server-macOS-${{ github.event.release.tag_name }}.tar.gz
158+
asset_name: haskell-language-server-macOS-${{ github.event.release.tag_name }}.tar.gz
159159
asset_content_type: application/gzip
160160

161161
- uses: actions/[email protected]
162162
env:
163163
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
164164
with:
165165
upload_url: ${{ github.event.release.upload_url }}
166-
asset_path: haskell-language-server-Linux-${{ github.event.release.tag_name }}.gz
167-
asset_name: haskell-language-server-Linux-${{ github.event.release.tag_name }}.gz
166+
asset_path: haskell-language-server-Linux-${{ github.event.release.tag_name }}.tar.gz
167+
asset_name: haskell-language-server-Linux-${{ github.event.release.tag_name }}.tar.gz
168168
asset_content_type: application/gzip

Diff for: docs/releases.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ we make sure to upload them as their full name variant.
7373

7474
### ghcup
7575
Ghcup can install hls binaries, provided that there is a tarfile
76-
called `haskell-language-server-{macOS,Linux}-$HLS_VERSION.gz`
76+
called `haskell-language-server-{macOS,Linux}-$HLS_VERSION.tar.gz`
7777
included in the GitHub release. The `tar` job in the workflow file automates the creation of this.
7878

7979
### Windows

0 commit comments

Comments
 (0)