Skip to content

Commit

Permalink
Added Publish snapshots to maven via GHA workflow (opensearch-project…
Browse files Browse the repository at this point in the history
…#690) (opensearch-project#692)

* Added Publish snapshots to maven via GHA workflow

Signed-off-by: Angie Zhang <[email protected]>

* Added Publish snapshots to maven via GHA workflow

Signed-off-by: Angie Zhang <[email protected]>

* Fixed CVE-2022-1471

Signed-off-by: Angie Zhang <[email protected]>

* Fixed review comments

Signed-off-by: Angie Zhang <[email protected]>

---------

Signed-off-by: Angie Zhang <[email protected]>
(cherry picked from commit 9cdcffd)

Co-authored-by: Angie Zhang <[email protected]>
Signed-off-by: Ronnak Saxena <[email protected]>
  • Loading branch information
2 people authored and ronnaksaxena committed Jul 19, 2023
1 parent ad4cdee commit f0a5dac
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/maven-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publish snapshots to maven

on:
workflow_dispatch:
push:
branches: [
main
1.*
2.*
]

jobs:
build-and-publish-snapshots:
runs-on: ubuntu-latest

permissions:
id-token: write
contents: write

steps:
- uses: actions/setup-java@v3
with:
distribution: temurin # Temurin is a distribution of adoptium
java-version: 11
- uses: actions/checkout@v3
- uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: ${{ secrets.PUBLISH_SNAPSHOTS_ROLE }}
aws-region: us-east-1
- name: publish snapshots to maven
run: |
export SONATYPE_USERNAME=$(aws secretsmanager get-secret-value --secret-id maven-snapshots-username --query SecretString --output text)
export SONATYPE_PASSWORD=$(aws secretsmanager get-secret-value --secret-id maven-snapshots-password --query SecretString --output text)
echo "::add-mask::$SONATYPE_USERNAME"
echo "::add-mask::$SONATYPE_PASSWORD"
./gradlew publishPluginZipPublicationToSnapshotsRepository
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ configurations.all {
force 'org.apache.httpcomponents.client5:httpclient5:5.0.3'
force 'org.apache.httpcomponents.client5:httpclient5-osgi:5.0.3'
force "com.fasterxml.jackson.core:jackson-databind:${versions.jackson_databind}"
force 'org.yaml:snakeyaml:1.32'
force "org.yaml:snakeyaml:${versions.snakeyaml}"
force 'org.codehaus.plexus:plexus-utils:3.0.24'
}
}
Expand Down Expand Up @@ -248,6 +248,16 @@ publishing {
}
}
}
repositories {
maven {
name = "Snapshots"
url = "https://aws.oss.sonatype.org/content/repositories/snapshots"
credentials {
username "$System.env.SONATYPE_USERNAME"
password "$System.env.SONATYPE_PASSWORD"
}
}
}
}

plugins.withId('java') {
Expand Down

0 comments on commit f0a5dac

Please sign in to comment.