-
Notifications
You must be signed in to change notification settings - Fork 1
38 lines (33 loc) · 823 Bytes
/
ci.yaml
File metadata and controls
38 lines (33 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: CI
on:
push:
branches:
- main
pull_request:
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
path-to-file: ./openapi.json
env:
API_KEY: ${{ secrets.HEY_API_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload YAML OpenAPI spec
id: upload-yaml-openapi-spec
uses: ./
with:
dry-run: true
path-to-file: ./openapi.yaml
env:
API_KEY: ${{ secrets.HEY_API_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}