How to reference 'environment' in github action workflow?

浪子不回头ぞ 提交于 2021-02-11 12:20:50

问题


I have the environment created named "main", but the workflow below errors out: environment created:

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?


回答1:


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
      ...


来源:https://stackoverflow.com/questions/65692644/how-to-reference-environment-in-github-action-workflow

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!