From 10ffb180f444568bd430d7a46783dbefbd840753 Mon Sep 17 00:00:00 2001 From: Alex H Date: Thu, 13 Mar 2025 07:52:32 +0100 Subject: [PATCH] ci: fix path in yml --- .github/workflows/create-release.yml | 4 ++-- .github/workflows/pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 9ee0e4b..bb123d3 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -79,7 +79,7 @@ jobs: e2e-test: needs: [test] - uses: e2e-test.yml + uses: ./.github/workflows/e2e-test.yml with: mainBranch: "last-tag" secrets: @@ -95,7 +95,7 @@ jobs: upload-badge: needs: [ test, e2e-test ] - uses: upload-badge.yml + uses: ./.github/workflows/upload-badge.yml with: mainBranch: "last-tag" secrets: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index b3a87ba..beac577 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -11,7 +11,7 @@ jobs: e2e-test: needs: [test] - uses: e2e-test.yml + uses: ./.github/workflows/e2e-test.yml secrets: NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}