Sauron
Sauron

Reputation: 6647

How to reference 'environment' in github action workflow?

I have the environment created named "main", but the workflow below errors out: environment created: enter image description here

Below is my github workflow:

name: Deploy ADf ARM    

on:
  workflow_dispatch:

environment: 
  name: main

jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    steps:

      # Checkout code
    - uses: actions/checkout@main
      ...

at present it notes the error:

The workflow is not valid. .github/workflows/deploy-adf-arm.yml (Line: 7, Col: 1): Unexpected value 'environment'

How can I reference this environment to work?

Upvotes: 5

Views: 5155

Answers (1)

Krzysztof Madej
Krzysztof Madej

Reputation: 40553

It should be on job level

name: Deploy ADf ARM    

on:
  workflow_dispatch:



jobs:
  build-and-deploy:
    runs-on: ubuntu-latest
    environment: 
      name: main
    steps:

      # Checkout code
    - uses: actions/checkout@main
      ...

Upvotes: 6

Related Questions