Skip to content

Commit 75dc9bf

Browse files
Fix
1 parent f3a545f commit 75dc9bf

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

.github/workflows/release-IPA-metrics.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ on:
88
permissions:
99
issues: write
1010
contents: write
11-
env:
12-
NODE_VERSION: '20.x'
13-
OAS_BRANCH: 'dev'
14-
OAS_FILE: 'v2.json'
1511

1612
jobs:
1713
# Generates and uploads the IPA validation metrics to S3
@@ -22,14 +18,14 @@ jobs:
2218
- name: Fetch OAS file from Dev Branch
2319
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
2420
with:
25-
ref: ${{ env.OAS_BRANCH }}
26-
sparse-checkout: openapi/${{ env.OAS_FILE }}
21+
ref: 'dev'
22+
sparse-checkout: openapi/v2.json
2723

2824
- name: Upload OAS file
2925
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08
3026
with:
3127
name: oas-dev
32-
path: openapi/${{ env.OAS_FILE }}
28+
path: openapi/v2.json
3329

3430
- name: Checkout repository (scripts)
3531
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
@@ -42,7 +38,7 @@ jobs:
4238
- name: Setup Node
4339
uses: actions/setup-node@v4
4440
with:
45-
node-version: ${{ env.NODE_VERSION }}
41+
node-version: '20.x'
4642
cache: 'npm'
4743

4844
- name: Install npm dependencies
@@ -55,7 +51,7 @@ jobs:
5551

5652
- name: Run Metric Collection Job
5753
working-directory: tools/spectral/ipa/metrics/scripts
58-
run: node runMetricCollection.js "${{ github.workspace }}/${{ env.OAS_FILE }}"
54+
run: node runMetricCollection.js "${{ github.workspace }}/v2.json"
5955

6056
- name: Dump Metric Collection Job Data to S3
6157
env:
@@ -71,7 +67,7 @@ jobs:
7167
if: ${{ failure() }}
7268
uses: ./.github/workflows/failure-handler.yml
7369
with:
74-
env: ${{ env.OAS_BRANCH }}
70+
oas_env: 'dev'
7571
release_name: "IPA Metrics"
7672
secrets:
7773
jira_api_token: ${{ secrets.JIRA_API_TOKEN }}

0 commit comments

Comments
 (0)