Skip to content

Commit

Permalink
Replace deprecated set-env with temporary files
Browse files Browse the repository at this point in the history
  • Loading branch information
lukel97 committed Nov 11, 2020
1 parent 8682517 commit 946f0ac
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,11 @@ jobs:
- name: Set some window specific things
if: matrix.os == 'windows-latest'
run: |
echo '::set-env name=EXE_EXT::.exe'
run: echo "EXE_EXT=.exe" >> $GITHUB_ENV

- name: Set some linux specific things
if: matrix.os == 'ubuntu-latest'
run: |
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

- name: Build Server
# Try building it twice in case of flakey builds on Windows
Expand Down

0 comments on commit 946f0ac

Please sign in to comment.