Skip to content

Commit

Permalink
Merge pull request #154 from haskell-works/avoid-set-env
Browse files Browse the repository at this point in the history
Avoid set-env in Github Actions
  • Loading branch information
newhoggy authored Jan 7, 2021
2 parents 335757e + 56387e1 commit 70d5dcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: actions/setup-haskell@v1
- uses: haskell/actions/setup@v1
id: setup-haskell
with:
ghc-version: ${{ matrix.ghc }}
Expand All @@ -37,7 +37,7 @@ 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: Configure project
run: cabal configure --enable-tests --enable-benchmarks --write-ghc-environment-files=ghc8.4.4+
Expand Down Expand Up @@ -261,7 +261,7 @@ 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: Upload Release Binary
uses: actions/[email protected]
Expand Down

0 comments on commit 70d5dcf

Please sign in to comment.