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 dc063d1 commit 2b1a138Copy full SHA for 2b1a138
.github/workflows/release_and_push.yml
@@ -32,10 +32,16 @@ jobs:
32
33
- name: Build artifact
34
run: mvn clean package -DskipTests
35
+
36
+ - name: Create release
37
+ uses: ncipollo/release-action@v1.12.0
38
+ with:
39
+ allowUpdates: true
40
+ artifacts: "${{ github.workspace }}/target/*.jar"
41
+ token: ${{ secrets.GITHUB_TOKEN }}
42
43
- name: Publish to the Maven Central Repository
44
run: mvn --no-transfer-progress deploy
-# run: mvn --no-transfer-progress deploy
45
46
env:
47
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
0 commit comments