Skip to content

Commit ebc8c0a

Browse files
committed
Create missing ~/.stack for alpine unit-tests.yml
The GitHub Action unit-tests.yml is failing with: ~~~ + [[ alpine == \a\l\p\i\n\e ]] + touch /home/runner/.stack/config.yaml touch: cannot touch '/home/runner/.stack/config.yaml': No such file or directory Error: Process completed with exit code 1. ~~~ This attempts to fix that by adding: `mkdir -p ~/.stack`
1 parent 5bd6749 commit ebc8c0a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ jobs:
7575
7676
if [[ "${{ matrix.extra-suffix }}" == "alpine" ]]
7777
then
78+
mkdir -p ~/.stack
7879
touch ~/.stack/config.yaml
7980
cat > ~/.stack/config.yaml <<EOF
8081
extra-include-dirs:

0 commit comments

Comments
 (0)