Skip to content

fix: env vars

fix: env vars #56

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- ready_for_review
- reopened
- synchronize
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Upload JSON OpenAPI spec
id: upload-json-openapi-spec
uses: ./
with:
dry-run: true
hey-api-token: ${{ secrets.HEY_API_TOKEN }}
path-to-openapi: ./openapi.json
- name: Upload YAML OpenAPI spec
id: upload-yaml-openapi-spec
uses: ./
with:
dry-run: true
hey-api-token: ${{ secrets.HEY_API_TOKEN }}
path-to-openapi: ./openapi.yaml