From 85c6b6905ec769c6197a474175800d12f36b8ce8 Mon Sep 17 00:00:00 2001 From: oliveregger Date: Wed, 15 May 2024 16:47:37 +0200 Subject: [PATCH] fix path --- .github/workflows/publish_ig.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish_ig.yml b/.github/workflows/publish_ig.yml index dc07002..e2df13e 100644 --- a/.github/workflows/publish_ig.yml +++ b/.github/workflows/publish_ig.yml @@ -42,11 +42,14 @@ jobs: run: echo "::set-output name=repo::$(echo ${{ github.repository }} | cut -d '/' -f 2)" shell: bash + - name: List path + run: ls -R ./ + # Builds the HTML page for the IG. - name: 🏃‍♂️ Run IG Publisher timeout-minutes: 45 # We need a long timeout here run : | - cd ./${{ steps.repo_name.outputs.repo }} + cd /home/runner/work/{{ steps.repo_name.outputs.repo }}/${{ steps.repo_name.outputs.repo }} java -Xmx8192m -jar ../publisher.jar -ig . cd ..