There was an error while loading. Please reload this page.
1 parent 6be7cb5 commit 73dafacCopy full SHA for 73dafac
1 file changed
.github/workflows/ci.yaml
@@ -10,12 +10,18 @@ on:
10
required: false
11
type: string
12
default: main
13
+ outputs:
14
+ artifact:
15
+ description: Download URL for the generated SDK.
16
+ value: ${{ jobs.generate.outputs.artifact }}
17
18
name: CI
19
20
jobs:
21
generate:
22
runs-on: ubuntu-latest
23
24
+ artifact: ${{ steps.upload.outputs.artifact-url }}
25
steps:
26
- uses: actions/checkout@v7
27
with:
@@ -30,7 +36,8 @@ jobs:
30
36
31
37
- run: bash ./generate.sh openapi-legacy.yaml
32
38
33
- - uses: actions/upload-artifact@v7
39
+ - id: upload
40
+ uses: actions/upload-artifact@v7
34
41
35
42
name: generated-java
43
path: .
0 commit comments