Derive session cookie encryption key from public URL and user-provided salt for load-balanced deployments #5420
Workflow file for this run
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: CI | |
| on: | |
| push: | |
| tags: | |
| - '**' | |
| workflow_dispatch: | |
| pull_request: | |
| schedule: | |
| - cron: 0 0 * * * # Daily at midnight | |
| jobs: | |
| # Run tests in release mode for tags and scheduled runs | |
| main: | |
| secrets: inherit | |
| uses: ./.github/workflows/main_base.yml | |
| with: | |
| toolchain: 1.90.0 | |
| # Use release for tags and scheduled runs | |
| debug_or_release: ${{ (startsWith(github.ref, 'refs/tags/') || github.event_name == 'schedule') && 'release' || 'debug' }} |