File tree 1 file changed +3
-13
lines changed
1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -2,34 +2,24 @@ name: Build and run
2
2
on :
3
3
schedule :
4
4
# * is a special character in YAML so you have to quote this string
5
- - cron : ' 0 9 * * *'
5
+ - cron : ' 0 9 * * *'
6
6
push :
7
- branches : [ main, 'feat/**' ]
7
+ branches : [main, 'feat/**']
8
8
paths-ignore :
9
9
- ' **.md' # Do not need to run CI for markdown changes.
10
10
pull_request :
11
- branches : [ main, 'feat/**' ]
11
+ branches : [main, 'feat/**']
12
12
paths-ignore :
13
13
- ' **.md'
14
-
15
14
jobs :
16
15
build-and-run :
17
16
runs-on : ubuntu-latest
18
-
19
17
permissions :
20
18
id-token : write # Needed if using OIDC to get release secrets.
21
-
22
19
steps :
23
20
- uses : actions/checkout@v4
24
-
25
21
- name : Set up Java
26
22
uses : actions/setup-java@v4
27
23
with :
28
24
distribution : ' temurin'
29
25
java-version : ' 21'
30
-
31
- - uses : launchdarkly/gh-actions/actions/verify-hello-app@verify-hello-app-v1.0.1
32
- with :
33
- use_server_key : true
34
- role_arn : ${{ vars.AWS_ROLE_ARN }}
35
- command : ./gradlew run
You can’t perform that action at this time.
0 commit comments