We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae3eb9f commit 3c15280Copy full SHA for 3c15280
1 file changed
.github/workflows/analyze-customer-repo.yml
@@ -27,7 +27,7 @@ jobs:
27
with:
28
supermodel-api-key: ${{ secrets.SUPERMODEL_API_KEY }}
29
base-url: https://repos.supermodeltools.com/${{ inputs.repo }}
30
- output-dir: /tmp/arch-docs-output
+ output-dir: /github/runner_temp/arch-docs-output
31
env:
32
GITHUB_REPOSITORY: ${{ inputs.repo }}
33
@@ -43,7 +43,7 @@ jobs:
43
REPO_NAME=$(echo "$REPO" | cut -d'/' -f2)
44
rm -rf /tmp/central-site/site/${OWNER}/${REPO_NAME}
45
mkdir -p /tmp/central-site/site/${OWNER}/${REPO_NAME}
46
- cp -r /tmp/arch-docs-output/. /tmp/central-site/site/${OWNER}/${REPO_NAME}/
+ cp -r $RUNNER_TEMP/arch-docs-output/. /tmp/central-site/site/${OWNER}/${REPO_NAME}/
47
cd /tmp/central-site
48
git add site/${OWNER}/${REPO_NAME}/
49
git diff --staged --quiet && echo "No changes to commit" && exit 0
0 commit comments