From 03ee3a8f91ee23a2c1de07885a7ae67553d1cb85 Mon Sep 17 00:00:00 2001 From: Stephan Behnke Date: Fri, 12 Jul 2024 11:10:09 -0700 Subject: [PATCH] Fix working dir --- .github/workflows/release-admin-tools.yml | 3 ++- .github/workflows/release-temporal.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-admin-tools.yml b/.github/workflows/release-admin-tools.yml index 63ef2375..dbbfdec5 100644 --- a/.github/workflows/release-admin-tools.yml +++ b/.github/workflows/release-admin-tools.yml @@ -37,4 +37,5 @@ jobs: SRC_REPO: temporaliotest DST_REPO: temporalio LATEST: ${{ github.event.inputs.latest }} - run: go run src/image_copy/main.go + working-directory: ./src + run: go run image_copy/main.go diff --git a/.github/workflows/release-temporal.yml b/.github/workflows/release-temporal.yml index 05513add..3999b2a2 100644 --- a/.github/workflows/release-temporal.yml +++ b/.github/workflows/release-temporal.yml @@ -43,4 +43,5 @@ jobs: DST_REPO: temporalio LATEST: ${{ github.event.inputs.latest }} MAJOR: ${{ github.event.inputs.major }} - run: go run src/image_copy/main.go + working-directory: ./src + run: go run image_copy/main.go