Merge pull request #383 from eliecharra/fix_s3_cache_issue

S3 does not update object if rollbacked to an existing layer
This commit is contained in:
Sam Alba 2021-04-29 13:39:15 -07:00 committed by GitHub
commit 7b9a4557d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -28,6 +28,7 @@ page: """
deploy: s3.#Put & {
config: awsConfig
sourceInline: page
always: true
contentType: "text/html"
target: "s3://\(bucket)/index.html"
}

View File

@ -26,8 +26,14 @@ import (
// URL of the uploaded S3 object
url: out
// Always write the object to S3
always?: bool
out: string
aws.#Script & {
if always != _|_ {
"always": always
}
files: {
if sourceInline != _|_ {
"/inputs/source": sourceInline