Skip to content

Commit 5bd6749

Browse files
committed
Create missing ~/.stack for alpine integration-tests.yml
The GitHub Action integration-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 c20ff12 commit 5bd6749

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ jobs:
6969
7070
if [[ "${{ matrix.release-args }}" == "--alpine" ]]
7171
then
72+
mkdir -p ~/.stack
7273
touch ~/.stack/config.yaml
7374
cat > ~/.stack/config.yaml <<EOF
7475
extra-include-dirs:

0 commit comments

Comments
 (0)