3636 - name : Install Dependencies
3737 run : yarn install --check-files --frozen-lockfile
3838 - name : Create js artifact
39- run : npx projen package:js
39+ run : npx projen compile && npx projen package:js
4040 package-java :
4141 needs : build
4242 runs-on : ubuntu-latest
5757 - name : Install Dependencies
5858 run : yarn install --check-files --frozen-lockfile
5959 - name : Create java artifact
60- run : npx projen package:java
60+ run : npx projen compile && npx projen package:java
6161 package-python :
6262 needs : build
6363 runs-on : ubuntu-latest
7777 - name : Install Dependencies
7878 run : yarn install --check-files --frozen-lockfile
7979 - name : Create python artifact
80- run : npx projen package:python
80+ run : npx projen compile && npx projen package:python
8181 package-dotnet :
8282 needs : build
8383 runs-on : ubuntu-latest
9797 - name : Install Dependencies
9898 run : yarn install --check-files --frozen-lockfile
9999 - name : Create dotnet artifact
100- run : npx projen package:dotnet
100+ run : npx projen compile && npx projen package:dotnet
101101 package-go :
102102 needs : build
103103 runs-on : ubuntu-latest
@@ -117,5 +117,5 @@ jobs:
117117 - name : Install Dependencies
118118 run : yarn install --check-files --frozen-lockfile
119119 - name : Create go artifact
120- run : npx projen package:go
120+ run : npx projen compile && npx projen package:go
121121
0 commit comments