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 854564b commit f1b27dfCopy full SHA for f1b27df
.github/workflows/release.yml
@@ -133,6 +133,15 @@ jobs:
133
- name: Install
134
run: yarn install --frozen-lockfile --prefer-offline
135
136
+ - uses: actions/cache/restore@v3
137
+ name: Restore build cache
138
+ id: build-cache
139
+ with:
140
+ path: |
141
+ **/dist
142
+ !**/node_modules
143
+ key: ${{ runner.os }}-build-cache-${{ hashFiles('**/src/', '!**/node_modules', '!**/dist') }}
144
+
145
- name: Notify Slack channel of new releases
146
id: slackbot
147
run: yarn slackbot '${{ needs.release.outputs.publishedPackages }}'
0 commit comments