Skip to content

Commit 9980e0e

Browse files
cicd: fix deploy-web step #TASK-7600
1 parent 8a7a15e commit 9980e0e

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/develop.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ jobs:
2525
secrets: inherit
2626

2727
deploy-web:
28-
uses: ./.github/workflows/deploy-jsorolla-web-workflow.yml
29-
needs: [ build, test ]
28+
uses: opencb/java-common-libs/.github/workflows/publish-test-report-workflow.yml@develop
29+
needs: build
3030
with:
31-
version: ${{ needs.build.outputs.version }}
31+
target_path: /var/www/html/iva/builds/${{ needs.build.outputs.version }}
32+
content: build-folder
3233
secrets: inherit

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ jobs:
1717
secrets: inherit
1818

1919
deploy-web:
20-
uses: ./.github/workflows/deploy-jsorolla-web-workflow.yml
20+
uses: opencb/java-common-libs/.github/workflows/publish-test-report-workflow.yml@develop
2121
needs: build
2222
with:
23-
version: ${{ needs.build.outputs.version }}
23+
target_path: /var/www/html/iva/builds/${{ needs.build.outputs.version }}
24+
content: build-folder
2425
secrets: inherit
2526

2627
release:

0 commit comments

Comments
 (0)