From 5da59640aa7908cebe0de200f6b6018d5f879a04 Mon Sep 17 00:00:00 2001 From: Minki Kim <68267535+mingi3314@users.noreply.github.com> Date: Sun, 19 May 2024 18:42:38 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20fix=20CI=20(#133)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### TL;DR This change is about updating the paths used in the `backend-release.yaml` workflow file to call reusable workflows for building the backend executable on different platforms. ### What changed? The paths previously pointed to the same directory, but now they point to the parent directory, indicating that the reusable workflows' location might have been changed. ### How to test? Ensure that the CI/CD pipeline runs correctly without errors related to the path changes applied in this PR. Verify that the backend is being built correctly on all specified platforms. ### Why make this change? This change ensures that the project's CI/CD workflow uses the correct paths to reusable workflows. This is imperative for the smooth execution of the CI/CD pipeline tasks and the successful build of the backend executable on different platforms. --- --- .github/workflows/backend-release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/backend-release.yaml b/.github/workflows/backend-release.yaml index f8d1c6a..d8b9405 100644 --- a/.github/workflows/backend-release.yaml +++ b/.github/workflows/backend-release.yaml @@ -52,17 +52,17 @@ jobs: fi - name: Call Reusable Workflow to Build Backend for Linux - uses: .github/workflows/build-backend-executable.yaml + uses: ../.github/workflows/build-backend-executable.yaml with: platform: linux - name: Call Reusable Workflow to Build Backend for macOS - uses: .github/workflows/build-backend-executable.yaml + uses: ../.github/workflows/build-backend-executable.yaml with: platform: macos - name: Call Reusable Workflow to Build Backend for Windows - uses: .github/workflows/build-backend-executable.yaml + uses: ../.github/workflows/build-backend-executable.yaml with: platform: windows