From 7f477c9a438c41626407fe5c57f6142cb3d6fa23 Mon Sep 17 00:00:00 2001 From: Alex Kerney Date: Fri, 4 Oct 2024 10:00:40 -0400 Subject: [PATCH] Format actions args correctly --- .github/workflows/check_sphinx_build.yml | 5 +++-- .github/workflows/deploy-docs.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check_sphinx_build.yml b/.github/workflows/check_sphinx_build.yml index 122ad7f..ece4716 100644 --- a/.github/workflows/check_sphinx_build.yml +++ b/.github/workflows/check_sphinx_build.yml @@ -17,8 +17,9 @@ jobs: - name: Install Conda environment from environment.yml uses: mamba-org/setup-micromamba@v2.0.0 - environment-file: environment.yml - cache-environment: true + with: + environment-file: environment.yml + cache-environment: true - name: Build documentation shell: bash -l {0} diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index e25597d..a569454 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -13,8 +13,9 @@ jobs: - name: Install Conda environment from environment.yml uses: mamba-org/setup-micromamba@v2.0.0 - environment-file: environment.yml - cache-environment: true + with: + environment-file: environment.yml + cache-environment: true - name: Build documentation