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}