Fixup to #631
This commit is contained in:
Brian Kroth 2024-01-16 15:05:24 -06:00 коммит произвёл GitHub
Родитель 1f3b26d9f0
Коммит 52fdc3c2e9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

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