Skip to content

Commit 4442d65

Browse files
committed
update gha deploy remove jfrog config
1 parent ae5ae6a commit 4442d65

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ on:
77
branches:
88
- master
99
env:
10-
JFROG_USER: ${{ secrets.ARTIFACTORY_AUTH_USER }}
11-
JFROG_PASS: ${{ secrets.ARTIFACTORY_AUTH_TOKEN }}
1210
SONATYPE_GPG_KEY_BASE64: ${{ secrets.SONATYPE_GPG_KEY_BASE64 }}
1311
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
1412
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
@@ -22,9 +20,6 @@ jobs:
2220
- uses: actions/checkout@v4
2321
with:
2422
fetch-depth: 0
25-
- name: Copy maven settings
26-
run: |
27-
wget https://raw.githubusercontent.com/entur/ror-maven-settings/master/.m2/settings.xml -O .github/workflows/settings.xml
2823
- uses: actions/setup-java@v4
2924
with:
3025
java-version: 17.0.13
@@ -40,14 +35,14 @@ jobs:
4035
${{ runner.os }}-
4136
4237
- name: Run maven build
43-
run: mvn verify -s .github/workflows/settings.xml
38+
run: mvn verify
4439
- name: Sonar Scan
4540
env:
4641
SONAR_TOKEN: ${{ secrets.ENTUR_SONAR_PASSWORD }}
4742
SONAR_PROJECT_NAME: ${{ github.event.repository.name }}
4843
SONAR_PROJECT_KEY: entur_${{ github.event.repository.name }}
4944
run: |
50-
mvn -Psonar -s .github/workflows/settings.xml \
45+
mvn -Psonar \
5146
sonar:sonar \
5247
-Dsonar.projectKey=${SONAR_PROJECT_KEY} \
5348
-Dsonar.organization=enturas-github \

0 commit comments

Comments
 (0)