Skip to content

Setting the next release to be 6.4.x as part of #2880 (#2881) #28

Setting the next release to be 6.4.x as part of #2880 (#2881)

Setting the next release to be 6.4.x as part of #2880 (#2881) #28

Workflow file for this run

---
name: Publish Snapshot
on:
push:
branches:
- main
- '[0-9].x'
workflow_dispatch:
jobs:
snapshot:
name: Deploy Snapshot
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up publishing to maven central
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
cache: 'maven'
server-id: ossrh
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: mvn offline
run: |
mvn -q dependency:go-offline
- name: deploy
run: |
mvn --no-transfer-progress deploy
env:
MAVEN_USERNAME: ${{secrets.OSSH_USERNAME}}
MAVEN_PASSWORD: ${{secrets.OSSH_TOKEN}}