From 3c475788097789eab934611f4284ae4df4269b58 Mon Sep 17 00:00:00 2001 From: Vargha Csongor Date: Wed, 28 Feb 2024 15:05:35 +0100 Subject: [PATCH] fix workflow references --- .github/workflows/backend-ci.yml | 6 +++--- .github/workflows/frontend-ci.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/backend-ci.yml b/.github/workflows/backend-ci.yml index eb2b79f..a06f224 100644 --- a/.github/workflows/backend-ci.yml +++ b/.github/workflows/backend-ci.yml @@ -6,16 +6,16 @@ on: jobs: lint: - uses: ./go_lint.yml + uses: ./.github/workflows/go_lint.yml with: working-directory: 'backend' build: needs: lint - uses: ./go_build.yml + uses: ./.github/workflows/go_build.yml with: working-directory: 'backend' test: needs: build - uses: ./go_test.yml + uses: ./.github/workflows/go_test.yml with: working-directory: 'backend' \ No newline at end of file diff --git a/.github/workflows/frontend-ci.yml b/.github/workflows/frontend-ci.yml index 9c6b682..3028cef 100644 --- a/.github/workflows/frontend-ci.yml +++ b/.github/workflows/frontend-ci.yml @@ -6,11 +6,11 @@ on: jobs: lint: - uses: ./go_lint.yml + uses: ./.github/workflows/go_lint.yml with: working-directory: 'backend' build: needs: lint - uses: ./go_build.yml + uses: ./.github/workflows/go_build.yml with: working-directory: 'backend'