From 08a0af619d13b88ef2765c43ab2a3ead6e4e2cdd Mon Sep 17 00:00:00 2001 From: Neil Mitchell Date: Mon, 3 Jul 2023 10:39:18 +0100 Subject: [PATCH] Changes to make binary releases work --- .github/workflows/release.yml | 8 +++----- CHANGES.txt | 1 + 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5194888e..9733f089 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,6 @@ jobs: tag_name: v${{ steps.reftags_version.outputs._1 }} release_name: v${{ steps.reftags_version.outputs._1 }} - - build: needs: init runs-on: ${{ matrix.os }} @@ -36,7 +34,7 @@ jobs: fail-fast: false matrix: include: - - os: ubuntu-18.04 + - os: ubuntu-20.04 SUFFIX: x86_64-linux.tar.gz - os: macOS-latest SUFFIX: x86_64-osx.tar.gz @@ -64,11 +62,11 @@ jobs: asset_content_type: application/zip - uses: actions/upload-release-asset@v1 - if: matrix.os == 'ubuntu-18.04' + if: matrix.os == 'ubuntu-20.04' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.init.outputs.upload_url }} - asset_path: dist/${{ needs.init.outputs.filename }}.tar.gz + asset_path: dist-newstyle/sdist/${{ needs.init.outputs.filename }}.tar.gz asset_name: ${{ needs.init.outputs.filename }}.tar.gz asset_content_type: application/zip diff --git a/CHANGES.txt b/CHANGES.txt index a4899b84..f5120a4f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,6 @@ Changelog for HLint (* = breaking change) + Attempt to make a binary release 3.6, released 2023-06-26 #1522, define __GLASGOW_HASKELL__ for cmdCpp #1519, don't suggest removing brackets that result in a parse error