-
Notifications
You must be signed in to change notification settings - Fork 7
50 lines (45 loc) · 1.26 KB
/
release-postman.yml
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
39
40
41
42
43
44
45
46
47
48
49
50
name: Postman Release
on:
workflow_call:
inputs:
atlas_prod_base_url:
description: 'Base URL of Atlas.'
required: true
type: string
secrets: # all secrets are passed explicitly in this workflow
postman_api_key:
required: true
workspace_id:
required: true
workflow_dispatch:
permissions:
issues: write
jobs:
release-postman:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Fetch OpenAPI Specification
working-directory: ./tools/postman
run: |
make fetch_openapi
- name: Convert the OpenAPI Specification into Collection
id: convert
working-directory: ./tools/postman
run: |
make convert_to_collection
- name: Transform Postman Collection
id: transform
env:
BASE_URL: ${{ inputs.atlas_prod_base_url }}
working-directory: ./tools/postman
run: |
make transform_collection
- name: Upload Collection to Postman
env:
POSTMAN_API_KEY: ${{ secrets.postman_api_key }}
WORKSPACE_ID: ${{ secrets.workspace_id }}
working-directory: ./tools/postman
run: |
make upload_collection