We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46c2c9b commit cb74cc4Copy full SHA for cb74cc4
.github/workflows/ci.yml
@@ -315,10 +315,12 @@ jobs:
315
--env "GH_TOKEN=$GH_TOKEN" \
316
--env "GH_USER=$GH_USER" \
317
--platform ${{ matrix.platform }} \
318
- --volume "$PWD:$PWD" \
+ --mount type=bind,source="$PWD",target="$PWD" \
319
+ --mount type=tmpfs,destination=/root/.pub-cache \
320
+ --mount type=tmpfs,destination=/tmp \
321
--workdir "$PWD" \
322
docker.io/library/dart:latest \
- /bin/sh -c "dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}"
323
+ /bin/sh -c "cp -R . /tmp/workspace && cd /tmp/workspace && dart pub get && dart run grinder pkg-github-linux-${{ matrix.arch }}"
324
env:
325
GH_TOKEN: "${{ secrets.GH_TOKEN }}"
326
GH_USER: sassbot
0 commit comments