We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe137db commit 756d8b9Copy full SHA for 756d8b9
1 file changed
.github/workflows/release.yml
@@ -65,6 +65,21 @@ jobs:
65
- name: Install dependencies
66
run: npm install --verbose
67
68
+ - name: Build packages
69
+ run: |
70
+ # Build base dependencies
71
+ npm run build --workspace=@slack/logger
72
+ npm run build --workspace=@slack/types
73
+
74
+ # Build packages requiring base dependencies
75
+ npm run build --workspace=@slack/web-api
76
+ npm run build --workspace=@slack/webhook
77
78
+ # Build packages that depend on the Web API
79
+ npm run build --workspace=@slack/oauth
80
+ npm run build --workspace=@slack/rtm-api
81
+ npm run build --workspace=@slack/socket-mode
82
83
- name: Publish to npm and create GitHub releases
84
uses: changesets/action@c48e67d110a68bc90ccf1098e9646092baacaa87 # v1.6.0
85
with:
0 commit comments