From d498abce7b6e8c993f0536eec4e47680e1aca78e Mon Sep 17 00:00:00 2001 From: atharva-2001 Date: Tue, 17 Oct 2023 16:44:57 +0530 Subject: [PATCH] delete create lockfiles --- .github/workflows/create-lockfiles.yml | 43 -------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/create-lockfiles.yml diff --git a/.github/workflows/create-lockfiles.yml b/.github/workflows/create-lockfiles.yml deleted file mode 100644 index 1188781c798..00000000000 --- a/.github/workflows/create-lockfiles.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: create-lockfiles - -on: - workflow_dispatch: # manual trigger - -defaults: - run: - shell: bash -l {0} - - -jobs: - lock: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup environment - uses: conda-incubator/setup-miniconda@v2 - with: - miniforge-variant: Mambaforge - miniforge-version: latest - auto-activate-base: true - activate-environment: "" - use-mamba: true - - - name: Install conda-lock - run: mamba install -c conda-forge conda-lock - - - name: Update Mamba # see https://github.com/conda-incubator/setup-miniconda/issues/288 - run: mamba update mamba - - - name: Generate lockfiles - run: | - conda-lock -f tardis_env3.yml -p linux-64 -p osx-64 - conda lock render conda-lock.yml - - - uses: actions/upload-artifact@v3 - with: - name: lockfiles - path: | - conda-linux-64.lock - conda-osx-64.lock - conda-lock.yml \ No newline at end of file