sdk: add subgraph endpoints and bump #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Packages to NPM | |
on: | |
push: | |
branches: | |
- production | |
paths: | |
- 'packages/sdk/**' | |
jobs: | |
publishable-packages: | |
name: Check for package that can be published | |
uses: ./.github/workflows/publishable-packages.yml | |
with: | |
package-names: 'sdk' | |
publish-sdk: | |
name: Publish NPM | |
needs: publishable-packages | |
if: ${{ fromJson(needs.publishable-packages.outputs.publishable-packages)[0] != '' }} | |
runs-on: ubuntu-latest | |
# Required for provenance | |
permissions: | |
id-token: write | |
strategy: | |
matrix: | |
package-name: ${{ fromJson(needs.publishable-packages.outputs.publishable-packages) }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b | |
- name: Setup workflow | |
uses: ./.github/actions/setup | |
- name: Install and build package | |
run: | | |
pnpm --filter-prod ${{ matrix.package-name }}... install | |
pnpm --filter ${{ matrix.package-name }}... build | |
- name: Publish package | |
run: NPM_CONFIG_PROVENANCE=true pnpm --filter ${{ matrix.package-name }} publish --publish-branch production --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |