diff --git a/action.yml b/action.yml index 8f9af70..bf204e8 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ name: "MinIO Cache" -description: "Save and restore caches" +description: "Save and restore caches via MinIO/S3." author: "0xMax42" branding: icon: "archive" @@ -12,16 +12,15 @@ inputs: paths: description: "List of paths to cache" required: true - compression-level: + compression_level: description: "Compression level for the cache. ZStd, eg. 0-6" required: false - default: "0" - -outputs: - cache-hit: - description: "Boolean indicating if an exact match was found for the cache key" + default: "3" runs: - using: "node20" - main: "dist/index.js" - post: "dist/index.js" + using: "composite" + steps: + - name: "Run Action" + shell: "bash" + run: | + ./dist/run-amd64 diff --git a/dist/.gitkeep b/dist/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/dist/run-amd64 b/dist/run-amd64 new file mode 100755 index 0000000..80c1a64 Binary files /dev/null and b/dist/run-amd64 differ