We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8682517 commit 82b45b7Copy full SHA for 82b45b7
.github/workflows/build.yml
@@ -47,13 +47,11 @@ jobs:
47
48
- name: Set some window specific things
49
if: matrix.os == 'windows-latest'
50
- run: |
51
- echo '::set-env name=EXE_EXT::.exe'
+ run: echo "EXE_EXT=.exe" >> $GITHUB_ENV
52
53
- name: Set some linux specific things
54
if: matrix.os == 'ubuntu-latest'
55
56
- echo '::set-env name=LINUX_CABAL_ARGS::--enable-executable-static --ghc-options=-split-sections'
+ run: echo "LINUX_CABAL_ARGS='--enable-executable-static --ghc-options=-split-sections'" >> $GITHUB_ENV
57
58
- name: Build Server
59
# Try building it twice in case of flakey builds on Windows
0 commit comments