feature: add api key params and expiration #284
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: Deploy TS-SDK docs to github pages | |
on: | |
push: | |
paths: | |
- 'clients/ts-sdk/**' | |
branches: ["main"] | |
pull_request: | |
paths: | |
- 'clients/ts-sdk/**' | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: blacksmith-2vcpu-ubuntu-2204 | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Build the app | |
working-directory: ./clients/ts-sdk | |
run: yarn build:docs | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
path: "./clients/ts-sdk/docs" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |