We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e52825 commit 8433575Copy full SHA for 8433575
1 file changed
.github/workflows/build-and-push.yml
@@ -135,8 +135,11 @@ jobs:
135
136
docker pull "${FULL_IMAGE_NAME}"
137
138
+ # GITHUB_TOKEN: "stack new" uses GitHub API to fetch templates, may hit rate limits without auth
139
+ # See: https://github.com/commercialhaskell/stack/issues/6034
140
docker run --rm \
141
--platform ${{ matrix.platform }} \
142
+ -e GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} \
143
-v ${{ github.workspace }}/.github/scripts/smoke-test.sh:/tmp/smoke-test.sh \
144
-v ${{ github.workspace }}/docker/haskell-versions.env:/tmp/haskell-versions.env \
145
-w /tmp \
0 commit comments