From 9d42096fb7a8a4a24755af5ccd52e644bb6fe54d Mon Sep 17 00:00:00 2001 From: mauzey1 Date: Fri, 14 Jun 2024 10:57:44 -0700 Subject: [PATCH] fix run commands --- .github/workflows/github-actions-demo.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 80408345..34de056e 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -18,7 +18,7 @@ jobs: FORTRAN_COMPILER: gfortran_osx-64 steps: - name: Setup Miniconda - run: curl -L $MINICONDA_INSTALLER_URL -o miniconda.sh - run: bash miniconda.sh -b -p miniconda - run: source miniconda/etc/profile.d/conda.sh - run: python -V + - run: curl -L $MINICONDA_INSTALLER_URL -o miniconda.sh + - run: bash miniconda.sh -b -p miniconda + - run: source miniconda/etc/profile.d/conda.sh + - run: python -V