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 85b9659 commit de8d8d6Copy full SHA for de8d8d6
.github/workflows/release-bins.yml
@@ -184,6 +184,13 @@ jobs:
184
tar -C release/$RELEASE -cf - dist/ | gzip -9 > artifacts/apollo-mcp-server-$VERSION-$RENAMED.tar.gz
185
done
186
187
+ # We only need to generate the config schema for a release once, so we do it
188
+ # on the linux host since it is the cheapest.
189
+ - name: Generate config schema
190
+ if: ${{ matrix.bundle == 'linux' }}
191
+ run: |
192
+ ./release/cross-x86_64-unknown-linux-musl/dist/config-schema > artifacts/config.schema.json
193
+
194
- name: Upload release artifacts
195
uses: softprops/action-gh-release@v2
196
with:
0 commit comments