From 2aca10385d00c7d907c449156a8f53eefa9f32f5 Mon Sep 17 00:00:00 2001 From: Brian Kroth Date: Tue, 16 Jan 2024 18:56:34 +0000 Subject: [PATCH] Github action fixup --- .github/workflows/devcontainer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 38c7f231a9..e815b18bfa 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -177,7 +177,7 @@ jobs: rm -f doc/build/html/htmlcov/.gitignore - name: Publish package to Test PyPi - if: github.event == 'release' && github.ref_type == 'tag' + if: github.event_name == 'release' && github.ref_type == 'tag' run: | if [ -n "${{ secrets.PYPI_TEST_USERNAME }}" ]; then docker exec --user vscode --env USER=vscode --env MAKEFLAGS=-Oline \ @@ -186,7 +186,7 @@ jobs: fi - name: Publish package to PyPi - if: github.repository == 'microsoft/mlos' && github.event == 'release' && github.ref_type == 'tag' + if: github.repository == 'microsoft/mlos' && github.event_name == 'release' && github.ref_type == 'tag' run: | if [ -n "${{ secrets.PYPI_USERNAME }}" ]; then docker exec --user vscode --env USER=vscode --env MAKEFLAGS=-Oline \