Skip to content

fix: Fix getSubscriptionModifiers response type (#91) #32

fix: Fix getSubscriptionModifiers response type (#91)

fix: Fix getSubscriptionModifiers response type (#91) #32

Workflow file for this run

name: Docs
on:
push:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
docs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- uses: actions/cache@v3.2.4
with:
path: node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn install --frozen-lockfile
- run: yarn docs
- uses: actions/upload-pages-artifact@v1.0.8
with:
path: './docs'
- uses: actions/deploy-pages@v2.0.0
id: deployment