diff --git a/.github/workflows/docker-amd64.yml b/.github/workflows/docker-amd64.yml index 1c36d95f..903ca587 100644 --- a/.github/workflows/docker-amd64.yml +++ b/.github/workflows/docker-amd64.yml @@ -83,7 +83,7 @@ jobs: uses: actions/checkout@v3 with: repository: ${{github.repository}}.wiki - path: ../wiki + path: wiki - name: Run Post-Build Hooks run: make hook-all diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index f1573594..6b4793ab 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -98,7 +98,7 @@ jobs: uses: actions/checkout@v3 with: repository: ${{github.repository}}.wiki - path: ../wiki + path: wiki - name: Run Post-Build Hooks run: make hook-all @@ -108,7 +108,7 @@ jobs: uses: stefanzweifel/git-auto-commit-action@49620cd3ed21ee620a48530e81dba0d139c9cb80 # dependabot updates to latest release with: commit_message: "Automated wiki publish for ${{github.sha}}" - repository: ../wiki/ + repository: wiki - name: Login to Docker Hub if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || github.event_name == 'schedule' diff --git a/Makefile b/Makefile index d201c1ba..1bad0646 100644 --- a/Makefile +++ b/Makefile @@ -136,7 +136,7 @@ linkcheck-docs: ## check broken links -hook/%: WIKI_PATH?=../wiki +hook/%: WIKI_PATH?=wiki hook/%: ## run post-build hooks for an image python3 -m tagging.tag_image --short-image-name "$(notdir $@)" --owner "$(OWNER)" && \ python3 -m tagging.create_manifests --short-image-name "$(notdir $@)" --owner "$(OWNER)" --wiki-path "$(WIKI_PATH)"