File tree Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Expand file tree Collapse file tree 3 files changed +46
-2
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ workflow_dispatch :
3
+ inputs :
4
+ workspace_path :
5
+ description : ' The workspace to publish'
6
+ required : true
7
+ type : choice
8
+ options :
9
+ - lib/java-server-sdk-otel
10
+ dry_run :
11
+ description : ' Is this a dry run. If so no docs will be published.'
12
+ type : boolean
13
+ required : true
14
+ token :
15
+ description : ' Token to use for publishing.'
16
+ required : true
17
+
18
+ name : Publish Docs
19
+ jobs :
20
+ build-publish :
21
+ runs-on : ubuntu-latest
22
+ permissions :
23
+ id-token : write
24
+ contents : write
25
+ steps :
26
+ - uses : actions/checkout@v4
27
+
28
+ -
uses :
launchdarkly/gh-actions/actions/[email protected]
29
+ name : Assume aws role
30
+ with :
31
+ aws_assume_role : ${{ vars.AWS_ROLE_ARN }}
32
+
33
+ - name : CI Check
34
+ uses : ./.github/actions/ci
35
+ with :
36
+ workspace_path : ${{ inputs.workspace_path }}
37
+ java_version : 8
38
+
39
+ - name : Publish Documentation
40
+ uses : ./.github/actions/publish-docs
41
+ with :
42
+ workspace_path : ${{ inputs.workspace_path }}
43
+ token : ${{ inputs.token }}
44
+ dry_run : ${{ inputs.dry_run }}
Original file line number Diff line number Diff line change 26
26
runs-on : ubuntu-latest
27
27
permissions :
28
28
id-token : write
29
- contents : read
29
+ contents : write
30
30
steps :
31
31
- uses : actions/checkout@v3
32
32
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencies {
34
34
// All Otel testing common packages are alpha variants, usage of alpha is intentional here
35
35
testImplementation ' io.opentelemetry.javaagent:opentelemetry-testing-common:1.33.1-alpha'
36
36
37
- implementation " com.launchdarkly:launchdarkly-java-server-sdk:7.4.0-SNAPSHOT "
37
+ implementation " com.launchdarkly:launchdarkly-java-server-sdk:7.4.0"
38
38
implementation " io.opentelemetry:opentelemetry-api:1.2.0"
39
39
}
40
40
You can’t perform that action at this time.
0 commit comments