There was an error while loading. Please reload this page.
1 parent f0c50de commit 645125bCopy full SHA for 645125b
1 file changed
.github/workflows/release.yml
@@ -31,13 +31,15 @@ jobs:
31
echo "::notice::Found version ${{ steps.current.outputs.version }}, all good."
32
fi
33
34
- - name: Setup Node.js
35
- uses: actions/setup-node@v3
+ - name: Setup Go
+ uses: actions/setup-go@v5
36
with:
37
- node-version: '20'
+ go-version-file: cmd/osapispec/go.mod
38
+ cache-dependency-path: cmd/osapispec/go.sum
39
- - name: Build
40
- run: npm ci && npm run merge
+ - name: Build Spec
41
+ run: go run . merge -source ../../spec -output ../../build/opensearch-openapi.yaml
42
+ working-directory: cmd/osapispec
43
44
- name: Upload Artifacts
45
id: upload
0 commit comments