From 1eabffbb764b919bf24f5cf4ba2a53852e476ed9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Gyarmati?= <40776291+peter-gy@users.noreply.github.com> Date: Tue, 21 Feb 2023 12:07:27 +0100 Subject: [PATCH] Fix `name` key placement in `python-webapp-on-azure.yml` The name associated with the `build-and-deploy` job was defined outside of the `jobs` section. --- AppService/python-webapp-on-azure.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppService/python-webapp-on-azure.yml b/AppService/python-webapp-on-azure.yml index ff1eb0cf..7a4199d7 100644 --- a/AppService/python-webapp-on-azure.yml +++ b/AppService/python-webapp-on-azure.yml @@ -17,9 +17,9 @@ env: PYTHON_VERSION: '3.7' STARTUP_COMMAND: '' # set this to the startup command required to start the gunicorn server. default it is empty -name: Build and deploy Python app jobs: build-and-deploy: + name: Build and deploy Python app runs-on: ubuntu-latest environment: dev steps: @@ -57,4 +57,4 @@ jobs: # Azure logout - name: logout run: | - az logout \ No newline at end of file + az logout