-
-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add list of merged prs * Remove branch trigger * Update release instructions * Include 9.2.1 in the current release * Bump up hls version * remove duplicate mention * Remove references to branch name * Fix cabal.project gen * Correct fail-fast condition * Bump up minor version * Bump up major version * Bump up major version * Allow brittany only for 9.0.1 * brittany not supported in hackage and 9.0.2 * Not short hls for hackage * Bump up versions everywhere * Update hackage index * Add ghcide in rename plugin * Apply linter and add selection demo * Add header linkable * Add first version of release description * Add last prs * Mention wingman * Grammar corrections Co-authored-by: Jan Hrcek <[email protected]> * Correct mention Co-authored-by: Pepe Iborra <[email protected]> * Warn about th in docs * Remove reference to install doc * Rephrasing Co-authored-by: J. S. <[email protected]> * Better style Co-authored-by: Junyoung "Clare" Jang <[email protected]> * Use could to stress it likely will not work * REmove reliable from the warning * Reorder comments * Rephrasing Co-authored-by: Michael Peyton Jones <[email protected]> * Update docs/supported-versions.md Co-authored-by: Michael Peyton Jones <[email protected]> * Use last version of internal deps * Restore original wording * One more pr * One more pr Co-authored-by: Jan Hrcek <[email protected]> Co-authored-by: Pepe Iborra <[email protected]> Co-authored-by: J. S. <[email protected]> Co-authored-by: Junyoung "Clare" Jang <[email protected]> Co-authored-by: Michael Peyton Jones <[email protected]>
- Loading branch information
1 parent
c2f6c19
commit ce41b64
Showing
41 changed files
with
480 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,6 @@ on: | |
default: 'false' | ||
release: | ||
types: [created] | ||
push: | ||
branches: | ||
- '*-check-build' | ||
|
||
jobs: | ||
build: | ||
|
@@ -90,7 +87,7 @@ jobs: | |
fi | ||
- name: Upload server to release | ||
if: ${{ !contains(github.ref_name, 'check') && github.event.release.upload_url != ''}} | ||
if: ${{ github.event.release.upload_url != ''}} | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -130,7 +127,7 @@ jobs: | |
fi | ||
- name: Upload wrapper to the release | ||
if: ${{ matrix.ghc == '8.10.7' && !contains(github.ref_name, 'check') && github.event.release.upload_url != '' }} | ||
if: ${{ matrix.ghc == '8.10.7' && github.event.release.upload_url != '' }} | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -173,7 +170,7 @@ jobs: | |
HEAD | ||
- name: Upload source tarball to the release | ||
if: ${{ !contains(github.ref_name, 'check') && github.event.release.upload_url != '' }} | ||
if: ${{ github.event.release.upload_url != '' }} | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -220,7 +217,7 @@ jobs: | |
tar -czpf haskell-language-server.tar.gz * | ||
- name: Upload binaries tarball to the release | ||
if: ${{ !contains(github.ref_name, 'check') && github.event.release.upload_url != '' }} | ||
if: ${{ github.event.release.upload_url != '' }} | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -258,7 +255,7 @@ jobs: | |
sed -i 's/\/.*)/)/g' SHA256SUMS | ||
- name: Upload sha256sums to the release | ||
if: ${{ !contains(github.ref_name, 'check') && github.event.release.upload_url != '' }} | ||
if: ${{ github.event.release.upload_url != '' }} | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.