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 fb89a01 commit 39a546eCopy full SHA for 39a546e
.github/workflows/container-validation-dynamo.yml
@@ -38,8 +38,15 @@ jobs:
38
- name: Build image
39
env:
40
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }}
41
+ AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
42
+ SCCACHE_S3_BUCKET: ${{ secrets.SCCACHE_S3_BUCKET }}
43
run: |
- ./container/build.sh --tag ${{ steps.define_image_tag.outputs.image_tag }} --target dev --framework none
44
+ ./container/build.sh --tag ${{ steps.define_image_tag.outputs.image_tag }} \
45
+ --target dev \
46
+ --framework none \
47
+ --use-sccache \
48
+ --sccache-bucket "$SCCACHE_S3_BUCKET" \
49
+ --sccache-region "$AWS_DEFAULT_REGION"
50
- name: Start services with docker-compose
51
working-directory: ./deploy
52
0 commit comments