We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
2 parents a359337 + 946f0ac commit 65ff1feCopy full SHA for 65ff1fe
.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