This repository has been archived by the owner on Sep 16, 2024. It is now read-only.
chore(docs-gen): fix gh action #3
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: Generate docs & postman collection | |
on: | |
push: | |
branches: | |
- main | |
# paths: | |
# - fern/** | |
jobs: | |
deploy-fern-external: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 17 | |
- name: Install Fern | |
run: npm install -g [email protected] && fern -v | |
- name: Install Dependencies | |
run: yarn install | |
- name: Generate docs & postman collection | |
run: fern generate --group external | |
env: | |
POSTMAN_API_KEY: ${{ secrets.POSTMAN_API_KEY }} | |
POSTMAN_WORKSPACE_ID: ${{ secrets.POSTMAN_WORKSPACE_ID }} | |
FERN_TOKEN: ${{ secrets.FERN_TOKEN }} |