Skip to content

Commit 9bc304c

Browse files
committed
Updated sample
1 parent 3e0956a commit 9bc304c

File tree

88 files changed

+902
-28
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+902
-28
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-java@v4
15+
with:
16+
java-version: '17'
17+
distribution: 'corretto'
18+
- name: Build with Maven
19+
run: mvn clean verify
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish to Maven Central
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-java@v4
12+
with:
13+
java-version: '17'
14+
distribution: 'corretto'
15+
- name: Publish to Maven Central
16+
run: mvn clean deploy -Prelease,javadoc
17+
env:
18+
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
19+
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
20+
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Publish Snapshot
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
- uses: actions/setup-java@v4
12+
with:
13+
java-version: '17'
14+
distribution: 'corretto'
15+
- name: Publish snapshot
16+
run: mvn clean deploy -Prelease
17+
env:
18+
MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
19+
MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
20+
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
File renamed without changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.43
File renamed without changes.
Lines changed: 226 additions & 0 deletions

samples/spring-ai-bedrock-agentcore-starter/examples/README.md renamed to samples/spring-ai-bedrock-agentcore/examples/README.md

samples/spring-ai-bedrock-agentcore-starter/examples/simple-spring-boot-app/.version renamed to samples/spring-ai-bedrock-agentcore/examples/simple-spring-boot-app/.version

File renamed without changes.

samples/spring-ai-bedrock-agentcore-starter/examples/simple-spring-boot-app/Dockerfile renamed to samples/spring-ai-bedrock-agentcore/examples/simple-spring-boot-app/Dockerfile

File renamed without changes.

0 commit comments

Comments
 (0)