Added $ssl_sigalg and $ssl_client_sigalg notes, missed in 5df8016e. #98
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: Deploy nginx.org | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| workflow_dispatch: | |
| inputs: | |
| deployment_env: | |
| type: choice | |
| description: Deployment environment | |
| options: | |
| - staging | |
| - prod | |
| default: staging | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| deploy: | |
| name: Deploy nginx.org | |
| uses: nginxinc/docs-actions/.github/workflows/nginx.org-make-aws.yml@main | |
| with: | |
| deployment_env: ${{ github.event_name == 'workflow_dispatch' && inputs.deployment_env || 'staging' }} | |
| secrets: | |
| AWS_ACCOUNT_ID: ${{ secrets.AWS_ACCOUNT_ID }} | |
| AWS_ROLE_NAME: ${{ secrets.AWS_ROLE_NAME }} | |
| ALLOWED_USERS: ${{ secrets.ALLOWED_USERS }} |