We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9b136c commit 85f7800Copy full SHA for 85f7800
.github/workflows/github-pages.yaml
@@ -5,6 +5,8 @@ on:
5
push:
6
branches:
7
- main
8
+ tags:
9
+ - "v*.*.*" # updates the version in the docs
10
11
# Allows you to run this workflow manually from the Actions tab
12
workflow_dispatch:
.github/workflows/release.yml
@@ -42,7 +42,7 @@ jobs:
42
gpg-passphrase: MAVEN_GPG_PASSPHRASE
43
44
- name: Publish to Apache Maven Central
45
- run: mvn deploy -P release
+ run: mvn deploy -P release -Dmaven.test.skip=true
46
env:
47
MAVEN_USERNAME: ${{ secrets.SONATYPE_MAVEN_REPOSITORY_USERNAME }}
48
MAVEN_CENTRAL_TOKEN: ${{ secrets.SONATYPE_MAVEN_REPOSITORY_PASSWORD }}
0 commit comments