Skip to content

Commit

Permalink
Merge pull request #103 from objectionary/102-fix-flag-in-stack-action
Browse files Browse the repository at this point in the history
fix: flag in stack-action
  • Loading branch information
fizruk authored Feb 9, 2024
2 parents 496546c + cd6e775 commit d3d37d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ghc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- name: 🧰 Setup Stack
uses: freckle/stack-action@v5
with:
stack-build-arguments: --${{ github.ref_name != 'master' && 'fast' || '' }} --pedantic
stack-build-arguments: ${{ github.ref_name != 'master' && '--fast' || '' }} --pedantic

pipeline:
name: "Run pipeline"
Expand All @@ -55,7 +55,7 @@ jobs:
- name: 🧰 Setup Stack
uses: freckle/stack-action@v5
with:
stack-build-arguments: --${{ github.ref_name != 'master' && 'fast' || '' }} --pedantic
stack-build-arguments: ${{ github.ref_name != 'master' && '--fast' || '' }} --pedantic

- uses: actions/setup-node@v4
with:
Expand Down

0 comments on commit d3d37d6

Please sign in to comment.