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 ae3baf9 commit c1cc5e1Copy full SHA for c1cc5e1
.github/workflows/release.yml
@@ -38,6 +38,8 @@ jobs:
38
run: |
39
git config user.name "GitHub Actions"
40
git config user.email "actions@github.com"
41
+ # Use HTTPS with GITHUB_TOKEN for authentication
42
+ git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
43
44
- name: Maven Release Prepare
45
env:
@@ -58,5 +60,5 @@ jobs:
58
60
59
61
mvn --batch-mode release:perform \
62
-DaltDeploymentRepository=openmrs-repo-modules::default::https://openmrs.jfrog.io/artifactory/modules/ \
- -Dusername=ARTIFACTORY_USERNAME \
- -Dpassword=ARTIFACTORY_PASSWORD
63
+ -Dusername=${{ secrets.ARTIFACTORY_USERNAME }} \
64
+ -Dpassword=${{ secrets.ARTIFACTORY_PASSWORD }}
0 commit comments