From aa6104819dc214686697a0eaecdaa2370b8f5cec Mon Sep 17 00:00:00 2001 From: Scion Date: Sun, 29 Jun 2025 23:54:54 -0700 Subject: [PATCH] test --- github/download-previous-artifacts/action.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/github/download-previous-artifacts/action.yaml b/github/download-previous-artifacts/action.yaml index 01f5ed9..60fa3ad 100644 --- a/github/download-previous-artifacts/action.yaml +++ b/github/download-previous-artifacts/action.yaml @@ -25,6 +25,7 @@ runs: steps: - run: | ls -al "${{ github.action_path }}" + cp "${{ github.action_path }}/download-previous-artifact.js" "${{ github.workspace }}/__download-previous-artifact.js" shell: bash - name: "Download artifacts." uses: https://github.com/actions/github-script@v6 @@ -35,6 +36,6 @@ runs: UNZIP_DIR: ${{ inputs.unzipDir }} with: script: | - const script = require('${{ github.action_path }}/download-previous-artifact.js') + const script = require('__download-previous-artifact.js') await script({github, context, core}) shell: node