Skip to content

Commit

Permalink
Fix staging deploy (#1165)
Browse files Browse the repository at this point in the history
* fix staging pipeline

* update staging deploy workflow
  • Loading branch information
kcinay055679 authored Nov 18, 2024
1 parent 2520d23 commit 06aa9d8
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/staging-deploy-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ jobs:
e2e-docker:
runs-on: ubuntu-24.04
needs: [build-docker-image,update-version]
strategy:
fail-fast: false
matrix:
file: ${{ fromJSON(needs.get-e2e-files.outputs.file_list) }}
steps:
- uses: actions/checkout@v4

Expand All @@ -133,7 +137,7 @@ jobs:
run: |
docker run --network=host \
-e SPRING_PROFILES_ACTIVE=integration-test \
${{ needs.read-version.outputs.okr-docker-image}} &
${{ needs.update-version.outputs.okr-docker-image}} &
- name: Cypress run e2e tests
uses: cypress-io/github-action@v6
Expand All @@ -155,12 +159,6 @@ jobs:
name: cypress-screenshots ${{ matrix.file }}
path: frontend/cypress/screenshots

- uses: actions/upload-artifact@v4
if: always()
with:
name: cypress-screenshots
path: frontend/cypress/screenshots

upload-to-quay:
runs-on: ubuntu-latest
needs: [update-version, e2e-docker] #[e2e-docker, update-version]
Expand Down

0 comments on commit 06aa9d8

Please sign in to comment.