Skip to content

Bump bouncycastle jdk15on version to jdk18on 1.78.1 and associated ch… #40

Bump bouncycastle jdk15on version to jdk18on 1.78.1 and associated ch…

Bump bouncycastle jdk15on version to jdk18on 1.78.1 and associated ch… #40

Workflow file for this run

name: pkix-ocsp Snapshot publish
on: [push]
jobs:
master-branch-publish:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master' # run this job only for the master branch
steps:
- uses: actions/checkout@v2
- name: Set up Maven Central Repository
uses: actions/setup-java@v1
with:
java-version: 11
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish package
run: mvn --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
milestone-6-branch-build:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/feature/milestone-6' # run this job only for the feature/milestone-6 branch
steps:
- uses: actions/checkout@v2
- name: Set up Maven Central Repository
uses: actions/setup-java@v1
with:
java-version: 11
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish package
run: mvn --batch-mode deploy
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}