Skip to content
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
node_modules
.DS_Store

yarn-error.log

# allow an example of the modified files artifact that should not be committed
.modified
11 changes: 10 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ runs:
main: 'dist/index.js'
inputs:
muse_product_slug:
description: 'Product slug path to use for image uploads, may include a commit SHA for versioning'
description: 'Product slug path to use for image uploads'
required: true
aws_s3_bucket:
description: 'Target bucket for image uploads'
Expand All @@ -24,6 +24,15 @@ inputs:
description: 'Project directory where source images are located. Internally the resolver looks within this for an `images` folder'
required: false
default: 'static-assets'
modified_images:
description: A file name which includes a string with all modified images in a given raange of commits
required: false
code_version:
description: 'A commit SHA for versioning'
required: true
code_version_before:
description: 'A commit SHA to compare with and get the diff'
required: true
print_image_dpi:
description: 'Pixel resolution of a print image'
required: false
Expand Down
Loading