chore: π Update SDK - Generate (#28) #22
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 | |
on: | |
push: # Will trigger when the RELEASES.md file is updated by the merged PR from the generation workflow | |
paths: | |
- "RELEASES.md" | |
branches: | |
- master | |
jobs: | |
publish: | |
uses: speakeasy-api/sdk-generation-action/.github/workflows/sdk-publish.yaml@v14 # Import the sdk publish workflow which will handle the publishing to the package managers | |
with: | |
publish_typescript: true | |
create_release: true | |
secrets: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
npm_token: ${{secrets.NPM_TOKEN}} | |
speakeasy_api_key: ${{ secrets.SPEAKEASY_API_KEY }} |