Skip to content

Commit

Permalink
fix: align operator CI decomposition of backend
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 committed Nov 16, 2024
1 parent 138c0cf commit ce87ea4
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-global.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: save trustd image
- name: save trustify-ui image
run: |
docker build . -t ghcr.io/trustification/trustd:pr-test -f Dockerfile.server
docker save -o /tmp/trustd.tar ghcr.io/trustification/trustd:pr-test
docker build . -t ghcr.io/trustification/trustify-ui:pr-test -f Dockerfile
docker save -o /tmp/trustify-ui.tar ghcr.io/trustification/trustify-ui:pr-test
- name: Upload trustd image as artifact
- name: Upload trustify-ui image as artifact
uses: actions/upload-artifact@v3
with:
name: trustd
path: /tmp/trustd.tar
name: trustify-ui
path: /tmp/trustify-ui.tar
retention-days: 1

run-global-ci:
needs: build-and-upload-for-global-ci
uses: trustification/trustify-ci/.github/workflows/global-ci.yml@main
with:
artifact: trustd
server_image: ghcr.io/trustification/trustd:pr-test
artifact: trustify-ui
ui_image: ghcr.io/trustification/trustify-ui:pr-test
run_api_tests: false

0 comments on commit ce87ea4

Please sign in to comment.