We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e52b51 commit 1ba5a62Copy full SHA for 1ba5a62
.github/workflows/ci-from-template.yaml
@@ -35,16 +35,17 @@ jobs:
35
path: ./cart-service
36
cart-service-ci:
37
needs: generate-from-template
38
- defaults:
39
- run:
40
- working-directory: ./cart-service
41
runs-on: ubuntu-latest
42
steps:
43
- name: Download generated cart-service artifact
44
uses: actions/download-artifact@v4
45
with:
46
name: cart-service
47
- path: .
+ path: ./cart-service
+ - name: Show downloaded files
+ run: |
+ echo "Working dir: $(pwd)"
48
+ ls -la ./cart-service
49
- name: Set up JDK 21
50
uses: actions/setup-java@v4
51
@@ -59,3 +60,4 @@ jobs:
59
60
${{ runner.os }}-maven-
61
- name: Build with Maven
62
run: mvn clean verify -ntp
63
+ working-directory: ./cart-service
0 commit comments