Skip to content

Commit bfdb355

Browse files
authored
Merge pull request #47 from frstrtr/ci-steward/fix-coin-matrix-guard-path
ci: fix coin-matrix guard path
2 parents 5c9d916 + 13215a3 commit bfdb355

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/coin-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Check source presence
3232
id: presence
3333
run: |
34-
if [ -f "src/c2pool/main_${{ matrix.coin }}.cpp" ] && [ -d "src/impl/${{ matrix.coin }}" ]; then
34+
if [ -f "src/impl/${{ matrix.coin }}/main_${{ matrix.coin }}.cpp" ] && [ -d "src/impl/${{ matrix.coin }}" ]; then
3535
echo "exists=1" >> "$GITHUB_OUTPUT"
3636
echo "::notice::c2pool-${{ matrix.coin }} source present — building."
3737
else

0 commit comments

Comments
 (0)