We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79002e8 commit f82b46dCopy full SHA for f82b46d
2 files changed
.github/workflows/deploy.yml
@@ -34,7 +34,9 @@ jobs:
34
cache-dependency-path: backend/pom.xml
35
36
- name: Run tests
37
- run: ./mvnw -B test
+ run: |
38
+ chmod +x ./mvnw
39
+ ./mvnw -B test
40
41
- name: Upload test results
42
if: failure()
@@ -52,7 +54,7 @@ jobs:
52
54
uses: actions/checkout@v4
53
55
56
- name: Build backend image
- run: docker build -t shelfsense-backend:scan ./backend
57
+ run: docker build -f ./backend/DockerFile -t shelfsense-backend:scan ./backend
58
59
- name: Run Trivy vulnerability scan
60
uses: aquasecurity/trivy-action@v0.35.0
.github/workflows/maven.yml
0 commit comments