|
19 | 19 | working-directory: ./entraid
|
20 | 20 | steps:
|
21 | 21 | - uses: actions/checkout@v2
|
22 |
| - - name: Checkout Jedis repository (tba_draft branch) |
23 |
| - uses: actions/checkout@v2 |
24 |
| - with: |
25 |
| - repository: atakavci/jedis # Replace with the actual jedis repository URL |
26 |
| - ref: ali/authx2 |
27 |
| - path: jedis # Check out into a subdirectory named `jedis` so it's isolated |
| 22 | + # - name: Checkout Jedis repository (tba_draft branch) |
| 23 | + # uses: actions/checkout@v2 |
| 24 | + # with: |
| 25 | + # repository: atakavci/jedis # Replace with the actual jedis repository URL |
| 26 | + # ref: ali/authx2 |
| 27 | + # path: jedis # Check out into a subdirectory named `jedis` so it's isolated |
28 | 28 |
|
29 | 29 | - name: Set up publishing to maven central
|
30 | 30 | uses: actions/setup-java@v2
|
|
51 | 51 | mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed
|
52 | 52 | working-directory: ./core
|
53 | 53 |
|
54 |
| - - name: Maven offline-jedis |
55 |
| - run: | |
56 |
| - mvn -q dependency:go-offline |
57 |
| - working-directory: ./jedis |
58 |
| - - name: Build and install Jedis supports TBA into local repo |
59 |
| - run: | |
60 |
| - mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed |
61 |
| - working-directory: ./jedis |
| 54 | + # - name: Maven offline-jedis |
| 55 | + # run: | |
| 56 | + # mvn -q dependency:go-offline |
| 57 | + # working-directory: ./jedis |
| 58 | + # - name: Build and install Jedis supports TBA into local repo |
| 59 | + # run: | |
| 60 | + # mvn clean install -DskipTests # Skip tests for faster builds, but you can remove the flag if needed |
| 61 | + # working-directory: ./jedis |
62 | 62 |
|
63 | 63 | - name: Maven offline
|
64 | 64 | run: |
|
65 | 65 | mvn -q dependency:go-offline
|
66 | 66 | - name: deploy
|
67 | 67 | run: |
|
68 | 68 | mvn --no-transfer-progress \
|
69 |
| - -DskipTests deploy |
| 69 | + -DskipTests -Dmaven.test.skip=true deploy |
70 | 70 | env:
|
71 | 71 | MAVEN_USERNAME: ${{secrets.OSSH_USERNAME}}
|
72 | 72 | MAVEN_PASSWORD: ${{secrets.OSSH_TOKEN}}
|
0 commit comments