Merge pull request #234 from RedisInsight/release/1.2.0 #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ❗ Release (prod) | |
on: | |
push: | |
branches: | |
- 'latest' | |
jobs: | |
tests-prod: | |
name: Run all tests | |
uses: ./.github/workflows/tests.yml | |
secrets: inherit | |
with: | |
group_tests: 'without_e2e' | |
pre_release: true | |
builds-prod: | |
name: Create all builds for release | |
uses: ./.github/workflows/build.yml | |
needs: tests-prod | |
secrets: inherit | |
with: | |
environment: 'production' | |
target: 'all' | |
e2e-linux-tests: | |
name: E2E Docker tests | |
needs: builds-prod | |
uses: ./.github/workflows/tests-e2e-linux.yml | |
secrets: inherit | |
aws-prod: | |
name: Realse to AWS S3 | |
uses: ./.github/workflows/aws.yml | |
needs: builds-prod | |
secrets: inherit |