diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index a28fca7..2587ecf 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -48,7 +48,7 @@ jobs: dist-dir: dist-newstyle store-path: ${{ steps.setup-haskell.outputs.cabal-store }} threads: 16 - archive-uri: ${{ secrets.BINARY_CACHE_URI }} + archive-uri: ${{ secrets.BINARY_CACHE_URI }}/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }} skip: "${{ secrets.BINARY_CACHE_URI == '' }}" - name: Cabal cache over HTTPS @@ -57,7 +57,7 @@ jobs: dist-dir: dist-newstyle store-path: ${{ steps.setup-haskell.outputs.cabal-store }} threads: 16 - archive-uri: https://cache.haskellworks.io/archive + archive-uri: https://cache.haskellworks.io/${{ env.CABAL_CACHE_VERSION }}/${{ runner.os }}/${{ matrix.cabal }}/${{ matrix.ghc }} skip: "${{ secrets.BINARY_CACHE_URI != '' }}" - name: Build @@ -159,14 +159,6 @@ jobs: fi done - - name: "Build Changelog" - id: build_changelog - uses: mikepenz/release-changelog-builder-action@v3 - env: - GITHUB_TOKEN: ${{ github.token }} - with: - toTag: "{{ github.ref }}" - - name: Create Release id: create_release uses: actions/create-release@v1 @@ -175,6 +167,6 @@ jobs: with: tag_name: ${{ github.ref }} release_name: Release ${{ needs.check.outputs.tag }} - body: ${{ steps.build_changelog.outputs.changelog }} + body: Undocumented draft: true prerelease: false diff --git a/avro.cabal b/avro.cabal index e7eb890..f3ac034 100644 --- a/avro.cabal +++ b/avro.cabal @@ -1,7 +1,7 @@ cabal-version: 2.4 name: avro -version: 0.6.2.0 +version: 0.6.2.1 synopsis: Avro serialization support for Haskell description: Avro serialization and deserialization support for Haskell category: Data