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 0227446 commit c166204Copy full SHA for c166204
.github/workflows/nightly.yml
@@ -56,7 +56,7 @@ jobs:
56
uses: actions/checkout@v4
57
with:
58
ref: repository
59
- path: mvn-repo
+ path: build/repository
60
61
- name: Deploy to Maven Repository
62
env:
@@ -67,6 +67,7 @@ jobs:
67
68
git config --global user.email "[email protected]"
69
git config --global user.name "GitHub Action Bot"
70
- mv build/repository mvn-repo
71
- git commit -am "Publish ${CURRENT_VERSION} (${{github.run_number}})"
+ pushd build/repository
+ git add snapshots/
72
+ git commit -m "Publish ${CURRENT_VERSION} (${{github.run_number}})"
73
git push -f origin repository
0 commit comments