Merge pull request #13 from 3dwardch3ng/develop

update maven settings
This commit is contained in:
2024-08-29 12:02:13 +10:00
committed by GitHub

View File

@@ -27,7 +27,10 @@ jobs:
git config --global user.name "3dwardch3ng"
git config --global core.autocrlf input
- name: Start release
run: mvn gitflow:release-start -B -DpushRemote=true -DallowSnapshots=true
run: |
mvn gitflow:release-start -B -DpushRemote=true -DallowSnapshots=true \
-P homelab \
--settings=${{ github.workspace }}/.mvn/settings.xml
- name: Maven Publish
env:
GITHUB_ACTOR: '3dwardch3ng'
@@ -42,7 +45,10 @@ jobs:
-P homelab \
--settings=${{ github.workspace }}/.mvn/settings.xml
- name: Finish release
run: mvn gitflow:release-finish -B -DpushRemote=true -DallowSnapshots=true
run: |
mvn gitflow:release-finish -B -DpushRemote=true -DallowSnapshots=true \
-P homelab \
--settings=${{ github.workspace }}/.mvn/settings.xml
env:
GITHUB_ACTOR: 3dwardch3ng
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}