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 c24f33e commit b974d05Copy full SHA for b974d05
.github/workflows/deploy-snapshot.yml
@@ -0,0 +1,23 @@
1
+name: Deploy snapshot to Danubetech Nexus
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - '.gitignore'
7
+ - 'README.md'
8
+ - 'LICENSE'
9
+ branches-ignore:
10
+ - 'release-**'
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@master
17
+ - name: Run maven deploy action
18
+ uses: danubetech/github-action-maven-deploy@master
19
+ with:
20
+ server_id: danubetech-maven-snapshots
21
+ env:
22
+ MAVEN_USERNAME: ${{ secrets.MAVEN_USERNAME }}
23
+ MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
0 commit comments