Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Commit d72b7bd

Browse files
committed
fix: Update paths in GitHub Actions workflow to reference project-service directory
1 parent 04ff19e commit d72b7bd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/buildtest.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ jobs:
3333
${{ runner.os }}-maven-
3434
3535
- name: Build with Maven
36-
run: mvn -B clean package --file pom.xml
36+
run: mvn -B clean package --file project-service/pom.xml
3737

3838
- name: Run Tests
39-
run: mvn -B test --file pom.xml
39+
run: mvn -B test --file project-service/pom.xml
4040

4141
- name: Upload Test Results
4242
if: always()
4343
uses: actions/upload-artifact@v4
4444
with:
4545
name: project-service-test-results
46-
path: target/surefire-reports/
46+
path: project-service/target/surefire-reports/
4747

4848
- name: Upload Build Artifact
4949
if: success()
5050
uses: actions/upload-artifact@v4
5151
with:
5252
name: project-service-jar
53-
path: target/*.jar
53+
path: project-service/target/*.jar

0 commit comments

Comments
 (0)