From 2dfa7f6afdf4e8d9ace85c33957bf29e67bd932d Mon Sep 17 00:00:00 2001 From: Simon Warchol Date: Mon, 1 Jul 2024 10:42:45 -0400 Subject: [PATCH] adding new github action --- .github/workflows/release.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cfc74e037..44df448be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,13 +2,13 @@ name: Release on: push: tags: - - '*' + - "*" jobs: build: strategy: matrix: - os: [ macos-latest, windows-latest ] - node-version: [ 16.x ] + os: [macos-latest, windows-latest] + node-version: [16.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -46,11 +46,13 @@ jobs: rm -r node_modules/ cd .. cd .. - - uses: conda-incubator/setup-miniconda@v2 + - uses: conda-incubator/setup-miniconda@v3 with: python-version: 3.9 environment-file: requirements.yml activate-environment: minerva_analysis + auto-activate-base: false + - name: Package Windows if: startsWith(matrix.os,'windows') shell: cmd /C CALL {0}