Skip to content

Commit 0e495ef

Browse files
Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml
1 parent 7657f82 commit 0e495ef

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/ci.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -2,34 +2,24 @@ name: Build and run
22
on:
33
schedule:
44
# * is a special character in YAML so you have to quote this string
5-
- cron: '0 9 * * *'
5+
- cron: '0 9 * * *'
66
push:
7-
branches: [ main, 'feat/**' ]
7+
branches: [main, 'feat/**']
88
paths-ignore:
99
- '**.md' # Do not need to run CI for markdown changes.
1010
pull_request:
11-
branches: [ main, 'feat/**' ]
11+
branches: [main, 'feat/**']
1212
paths-ignore:
1313
- '**.md'
14-
1514
jobs:
1615
build-and-run:
1716
runs-on: ubuntu-latest
18-
1917
permissions:
2018
id-token: write # Needed if using OIDC to get release secrets.
21-
2219
steps:
2320
- uses: actions/checkout@v4
24-
2521
- name: Set up Java
2622
uses: actions/setup-java@v4
2723
with:
2824
distribution: 'temurin'
2925
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

0 commit comments

Comments
 (0)