Skip to content

Commit 37b3c2d

Browse files
committed
chore: update artifact creation steps to include compilation
1 parent 7ea64c6 commit 37b3c2d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
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
@@ -57,7 +57,7 @@ jobs:
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
@@ -77,7 +77,7 @@ jobs:
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
@@ -97,7 +97,7 @@ jobs:
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

Comments
 (0)