From 943ee3bc9b8eac1a43534db4238be713b297e9d3 Mon Sep 17 00:00:00 2001 From: Marcelo Lazaroni Date: Sat, 7 Dec 2024 20:20:16 +0000 Subject: [PATCH] Add architecture to release file --- .github/workflows/haskell.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index cca4372..95185bd 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -74,10 +74,10 @@ jobs: binary=$(cabal list-bin hdc) cp "${binary}" haskell-docs-cli/ cp -r README.md haskell-docs-cli/ - tar cvf haskell-docs-cli-${{ matrix.os }}.tar haskell-docs-cli + tar cvf haskell-docs-cli-${{ runner.arch }}-${{ runner.os }}.tar haskell-docs-cli - name: Release uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: - files: haskell-docs-cli-${{ matrix.os }}.tar + files: haskell-docs-cli-${{ runner.arch }}-${{ runner.os }}.tar