Skip to content

Commit

Permalink
Try using no cache to force update
Browse files Browse the repository at this point in the history
  • Loading branch information
cscollett committed Aug 27, 2024
1 parent 5c32d32 commit e2216b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,16 @@ jobs:
elif [[ "${{ matrix.update-strategy }}" == "update" ]]; then
echo "Running normal test with updated dependencies"
docker build --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-update -t zephir-api2:test .
docker build --no-cache --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-update -t zephir-api2:test .
elif [[ "${{ matrix.update-strategy }}" == "unlocked-install" ]]; then
echo "Running normal test with updated dependencies"
docker build --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-unlocked-install -t zephir-api2:test .
docker build --no-cache --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-unlocked-install -t zephir-api2:test .
elif [[ "${{ matrix.update-strategy }}" == "unpegged-install" ]]; then
echo "Running normal test with updated dependencies"
docker build --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-unpegged-install -t zephir-api2:test .
docker build--no-cache --build-arg IMAGE_TAG=${{ matrix.image-tag }} --target test-unpegged-install -t zephir-api2:test .
fi

0 comments on commit e2216b8

Please sign in to comment.