Skip to content

Commit c432aad

Browse files
committed
Fix
1 parent 6f34f5c commit c432aad

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ jobs:
180180
build-arm:
181181
name: Build ARM binary
182182
runs-on: [self-hosted, Linux, ARM64, maerwald]
183+
environment: CI
183184
env:
184185
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
185186
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
@@ -231,7 +232,7 @@ jobs:
231232
retention-days: 2
232233
name: artifacts-arm-${{ matrix.ghc }}
233234
path: |
234-
./out-${{ matrix.platform.ARTIFACT }}-${{ matrix.ghc }}.tar
235+
./out-${{ env.ARTIFACT }}-${{ matrix.ghc }}.tar
235236
236237
build-freebsd:
237238
name: Build binary (FreeBSD)
@@ -281,7 +282,7 @@ jobs:
281282
## The environments can be seen in https://github.com/haskell/haskell-language-server/settings/environments
282283
## assuming you have the proper permissions.
283284
environment: CI
284-
runs-on: $ {{ matrix.platform.os }}
285+
runs-on: ${{ matrix.platform.os }}
285286
env:
286287
MACOSX_DEPLOYMENT_TARGET: 10.13
287288
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
@@ -714,7 +715,7 @@ jobs:
714715
run: |
715716
set -eux
716717
for dir in out/artifacts-win-* ; do
717-
mv -f "${dir}"/* "${dir}"/../
718+
cp -a "${dir}"/* out/
718719
rm -r "${dir}"
719720
done
720721
shell: bash

0 commit comments

Comments
 (0)