From ce41a8dc26bb702943d6b12be62a9ce604e8b853 Mon Sep 17 00:00:00 2001 From: Marius Felkner Date: Fri, 14 Jun 2024 14:42:49 +0200 Subject: [PATCH] fix: path in checks --- .github/workflows/checks.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index d43eef8..c825ffc 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -23,17 +23,17 @@ jobs: with: base64-encoded-secret: ${{ secrets.DEBUG_XCCONFIG }} filename: "Debug.xcconfig" - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - uses: mobiledevops/secret-to-file-action@v1 with: base64-encoded-secret: ${{ secrets.RELEASE_XCCONFIG }} filename: "Release.xcconfig" - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - uses: mobiledevops/secret-to-file-action@v1 with: base64-encoded-secret: ${{ secrets.SHARED_XCCONFIG }} filename: "Shared.xcconfig" - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - run: make prepare - run: make build @@ -51,19 +51,19 @@ jobs: base64-encoded-secret: ${{ secrets.DEBUG_XCCONFIG }} filename: "Debug.xcconfig" is-executable: true - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - uses: mobiledevops/secret-to-file-action@v1 with: base64-encoded-secret: ${{ secrets.RELEASE_XCCONFIG }} filename: "Release.xcconfig" is-executable: true - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - uses: mobiledevops/secret-to-file-action@v1 with: base64-encoded-secret: ${{ secrets.SHARED_XCCONFIG }} filename: "Shared.xcconfig" is-executable: true - working-directory: "./configurations/.xcconfig" + working-directory: ".configurations/.xcconfig" - run: make prepare # - run: make test # disbaled until signing is correctly setted up