Skip to content

Commit d9f2c5b

Browse files
committed
Fix mistakes
1 parent 341eed3 commit d9f2c5b

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.github/actions/build-oas-spec/action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: "Build Proxies"
22
description: "Build Proxies"
33

44
inputs:
5+
version:
6+
description: "Version number"
7+
required: true
58
apimEnv:
69
description: "APIM environment"
710
required: true

.github/actions/build-proxies/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ runs:
3030
using: composite
3131

3232
steps:
33+
- name: Download OAS Spec artifact
34+
uses: actions/download-artifact@v4
35+
with:
36+
name: api-oas-specification-${{ inputs.version }}
37+
path: ./build
38+
3339
- name: Setup Proxy Name and target
3440
shell: bash
3541
run: |

.github/workflows/stage-3-build.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
- name: "Build proxies"
6767
uses: ./.github/actions/build-oas-spec
6868
with:
69+
version: "${{ inputs.version }}"
6970
apimEnv: "internal-dev-sandbox"
7071
buildSandbox: true
7172
nodejs_version: ${{ inputs.nodejs_version }}

0 commit comments

Comments
 (0)