forked from launchdarkly/hello-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml
- Loading branch information
1 parent
7657f82
commit 0e495ef
Showing
1 changed file
with
3 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,34 +2,24 @@ name: Build and run | |
on: | ||
schedule: | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '0 9 * * *' | ||
- cron: '0 9 * * *' | ||
push: | ||
branches: [ main, 'feat/**' ] | ||
branches: [main, 'feat/**'] | ||
paths-ignore: | ||
- '**.md' # Do not need to run CI for markdown changes. | ||
pull_request: | ||
branches: [ main, 'feat/**' ] | ||
branches: [main, 'feat/**'] | ||
paths-ignore: | ||
- '**.md' | ||
|
||
jobs: | ||
build-and-run: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
id-token: write # Needed if using OIDC to get release secrets. | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Java | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '21' | ||
|
||
- uses: launchdarkly/gh-actions/actions/[email protected] | ||
with: | ||
use_server_key: true | ||
role_arn: ${{ vars.AWS_ROLE_ARN }} | ||
command: ./gradlew run |