RI-7155 - SSO never finishes on the VS Code extension after a 401 err… #14
This file contains hidden or 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 (stage) | |
on: | |
push: | |
branches: | |
- 'release/**' | |
- 'release-enterprise/**' | |
jobs: | |
tests: | |
name: Release stage tests | |
uses: ./.github/workflows/tests.yml | |
secrets: inherit | |
with: | |
group_tests: 'without_e2e' | |
pre_release: true | |
builds: | |
name: Release stage builds | |
uses: ./.github/workflows/build.yml | |
needs: tests | |
secrets: inherit | |
with: | |
environment: 'staging' | |
target: 'all' | |
enterprise: ${{ startsWith(github.ref_name, 'release-enterprise/') }} | |
e2e-linux-tests: | |
needs: builds | |
uses: ./.github/workflows/tests-e2e-linux.yml | |
secrets: inherit |