Skip to content

Commit

Permalink
fix: path in checks
Browse files Browse the repository at this point in the history
  • Loading branch information
mflknr committed Jun 14, 2024
1 parent ecdaa31 commit ce41a8d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down

0 comments on commit ce41a8d

Please sign in to comment.