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:
commit
7b9a4557d8
@ -28,6 +28,7 @@ page: """
|
|||||||
deploy: s3.#Put & {
|
deploy: s3.#Put & {
|
||||||
config: awsConfig
|
config: awsConfig
|
||||||
sourceInline: page
|
sourceInline: page
|
||||||
|
always: true
|
||||||
contentType: "text/html"
|
contentType: "text/html"
|
||||||
target: "s3://\(bucket)/index.html"
|
target: "s3://\(bucket)/index.html"
|
||||||
}
|
}
|
||||||
|
@ -26,8 +26,14 @@ import (
|
|||||||
// URL of the uploaded S3 object
|
// URL of the uploaded S3 object
|
||||||
url: out
|
url: out
|
||||||
|
|
||||||
|
// Always write the object to S3
|
||||||
|
always?: bool
|
||||||
|
|
||||||
out: string
|
out: string
|
||||||
aws.#Script & {
|
aws.#Script & {
|
||||||
|
if always != _|_ {
|
||||||
|
"always": always
|
||||||
|
}
|
||||||
files: {
|
files: {
|
||||||
if sourceInline != _|_ {
|
if sourceInline != _|_ {
|
||||||
"/inputs/source": sourceInline
|
"/inputs/source": sourceInline
|
||||||
|
Reference in New Issue
Block a user