Bump org.junit.jupiter:junit-jupiter from 5.13.1 to 5.13.4 (#144) #109
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Snapshot | |
on: | |
push: | |
branches: | |
- master | |
- '[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: central | |
server-username: CENTRAL_USERNAME | |
server-password: CENTRAL_TOKEN | |
# gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import | |
# gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private ke | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.m2/repository | |
/var/cache/apt | |
key: jfalkordb-${{hashFiles('**/pom.xml')}} | |
- name: mvn offline | |
run: | | |
mvn -q dependency:go-offline | |
- name: deploy | |
run: | | |
mvn --no-transfer-progress \ | |
-DskipTests deploy | |
env: | |
CENTRAL_USERNAME: ${{ secrets.CENTRAL_USERNAME }} | |
CENTRAL_TOKEN: ${{ secrets.CENTRAL_TOKEN }} | |
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |