Skip to content

Commit

Permalink
Merge pull request #147 from contentstack/staging
Browse files Browse the repository at this point in the history
Staging
  • Loading branch information
reeshika-h authored Nov 11, 2024
2 parents edfa936 + e33914c commit 2a561bf
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/maven--package-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Publishing to Maven Packages
#on: [ push ] # Trigger the workflow when a push (commit) event occurs
on:
release:
types: [ created ]
jobs:
publish-maven:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up Maven Central Repository
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
gpg-passphrase: GPG_PASSPHRASE
- name: Publish to Maven Central Repository
run: mvn --batch-mode -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

# run: mvn --batch-mode deploy
2 changes: 1 addition & 1 deletion src/main/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h1 id="java-sdk-for-contentstack">Java SDK for Contentstack</h1>
resources to get started with our Java SDK.</p>
<h2 id="prerequisite">Prerequisite</h2>
<p>You will need JDK installed on your machine. You can install it from <a
href="http://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html">here</a>.</p>
href="https://www.oracle.com/technetwork/java/javase/downloads/jdk9-downloads-3848520.html">here</a>.</p>
<h3 id="setup-and-installation">Setup and Installation</h3>
<p>To use the Contentstack Java SDK to your existing project, perform the steps given below:</p>
<p>Group id: <code>com.contentstack.sdk</code></p>
Expand Down

0 comments on commit 2a561bf

Please sign in to comment.