diff options
| author | John MacFarlane <jgm@berkeley.edu> | 2021-12-29 17:00:49 -0800 |
|---|---|---|
| committer | John MacFarlane <jgm@berkeley.edu> | 2021-12-29 23:31:49 -0800 |
| commit | ce7e1f516957c62124fcbcc83523786b0f36ed5d (patch) | |
| tree | 04be2499308d3cf10da24d44432c84e1d5279e56 | |
| parent | a6f62b2e796fe542cd04c86d380ed2cab1b5400f (diff) | |
Fix macos build on GitHub actions release-candidate.
| -rw-r--r-- | .github/workflows/release-candidate.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 89b25036a..84b2e8565 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -86,16 +86,14 @@ jobs: runs-on: macOS-10.15 - env: - DEVELOPER_DIR: /Applications/Xcode_10.3.app/Contents/Developer - steps: - uses: actions/checkout@v1 - name: Build executable run: | - stack update - stack install + stack --no-terminal setup + stack --no-terminal update + stack --no-terminal install - name: Create artifacts run: | |
