79115877

Date: 2024-10-22 22:08:49
Score: 0.5
Natty:
Report link

What I can not see in your workflow is that you also set the environment name. I set the environment name via an input.

Here is an example.

name: Build and Deploy

on:
  workflow_dispatch:
    inputs:
      environment:
        type: choice
        description: Choose environment
        options:
        - stage
        - production
jobs:
  deploy:
    environment: ${{inputs.environment}}
    runs-on: ubuntu-latest
    steps:
    # ..
Reasons:
  • Has code block (-0.5):
  • Starts with a question (0.5): What I can not
  • Low reputation (0.5):
Posted by: Bademeister