Skip to content

Commit

Permalink
Remove launchdarkly/gh-actions/actions/verify-hello-app from ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
naveenOnarayanan committed Oct 16, 2024
1 parent 7657f82 commit 0e495ef
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0e495ef

Please sign in to comment.