Skip to content

Commit

Permalink
fix: fixed ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Toto-hitori committed May 5, 2024
1 parent 65d8612 commit b0baaeb
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
e2e-tests:
runs-on: ubuntu-latest
needs: [ unit-tests ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -58,7 +59,7 @@ jobs:
- run: npm --prefix webapp run test:e2eci
docker-push-api:
runs-on: ubuntu-latest
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Publish to Registry
Expand All @@ -81,7 +82,7 @@ jobs:
SSL_PASSWORD
docker-push-prometheus:
runs-on: ubuntu-latest
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Publish to Registry
Expand All @@ -94,7 +95,7 @@ jobs:
workdir: api/monitoring/prometheus
docker-push-grafana:
runs-on: ubuntu-latest
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Publish to Registry
Expand All @@ -107,7 +108,7 @@ jobs:
workdir: api/monitoring/grafana
docker-push-reverse-proxy:
runs-on: ubuntu-latest
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Publish to Registry
Expand All @@ -123,7 +124,7 @@ jobs:
permissions:
contents: read
packages: write
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Create .env file
Expand All @@ -144,7 +145,7 @@ jobs:
REACT_APP_API_ENDPOINT
docker-push-question-generator:
runs-on: ubuntu-latest
needs: [ unit-tests ]
needs: [ e2e-tests ]
steps:
- uses: actions/checkout@v4
- name: Publish to Registry
Expand Down

0 comments on commit b0baaeb

Please sign in to comment.