|
1 |
| -name: publish-to-conda |
| 1 | +# name: publish-to-conda |
2 | 2 |
|
3 |
| -on: |
4 |
| - push: |
5 |
| - branches: |
6 |
| - - main |
7 |
| - paths: |
8 |
| - - pyproject.toml |
9 |
| - - conda/meta.yaml |
10 |
| - workflow_dispatch: |
| 3 | +# on: |
| 4 | +# push: |
| 5 | +# branches: |
| 6 | +# - main |
| 7 | +# paths: |
| 8 | +# - pyproject.toml |
| 9 | +# - conda/meta.yaml |
| 10 | +# workflow_dispatch: |
11 | 11 |
|
12 |
| -jobs: |
13 |
| - conda_deployment_with_new_tag: |
14 |
| - name: Conda deployment of package with Python ${{ matrix.python-version }} |
15 |
| - runs-on: ubuntu-latest |
16 |
| - strategy: |
17 |
| - matrix: |
18 |
| - python-version: ["3.10"] |
19 |
| - steps: |
20 |
| - - uses: actions/checkout@v3 |
21 |
| - with: |
22 |
| - fetch-depth: 0 |
23 |
| - - name: Conda environment creation and activation |
24 |
| - uses: conda-incubator/setup-miniconda@v3 |
25 |
| - with: |
26 |
| - python-version: ${{ matrix.python-version }} |
27 |
| - environment-file: conda/build_env.yaml |
28 |
| - channels: conda-forge,pytorch |
29 |
| - mamba-version: "*" |
30 |
| - use-mamba: true |
31 |
| - auto-update-conda: false |
32 |
| - auto-activate-base: false |
33 |
| - show-channel-urls: true |
34 |
| - - name: Build and upload the conda packages |
35 |
| - |
36 |
| - with: |
37 |
| - meta_yaml_dir: conda |
38 |
| - python-version: ${{ matrix.python-version }} # Values previously defined in `matrix` |
39 |
| - platform_linux-64: true |
40 |
| - platform_osx-64: true |
41 |
| - platform_win-64: true |
42 |
| - user: beveradb |
43 |
| - label: "main" |
44 |
| - token: ${{ secrets.ANACONDA_TOKEN }} # Replace with the right name of your secret |
| 12 | +# jobs: |
| 13 | +# conda_deployment_with_new_tag: |
| 14 | +# name: Conda deployment of package with Python ${{ matrix.python-version }} |
| 15 | +# runs-on: ubuntu-latest |
| 16 | +# strategy: |
| 17 | +# matrix: |
| 18 | +# python-version: ["3.10"] |
| 19 | +# steps: |
| 20 | +# - uses: actions/checkout@v3 |
| 21 | +# with: |
| 22 | +# fetch-depth: 0 |
| 23 | +# - name: Conda environment creation and activation |
| 24 | +# uses: conda-incubator/setup-miniconda@v3 |
| 25 | +# with: |
| 26 | +# python-version: ${{ matrix.python-version }} |
| 27 | +# environment-file: conda/build_env.yaml |
| 28 | +# channels: conda-forge,pytorch |
| 29 | +# mamba-version: "*" |
| 30 | +# use-mamba: true |
| 31 | +# auto-update-conda: false |
| 32 | +# auto-activate-base: false |
| 33 | +# show-channel-urls: true |
| 34 | +# - name: Build and upload the conda packages |
| 35 | + |
| 36 | +# with: |
| 37 | +# meta_yaml_dir: conda |
| 38 | +# python-version: ${{ matrix.python-version }} # Values previously defined in `matrix` |
| 39 | +# platform_linux-64: true |
| 40 | +# platform_osx-64: true |
| 41 | +# platform_win-64: true |
| 42 | +# user: beveradb |
| 43 | +# label: "main" |
| 44 | +# token: ${{ secrets.ANACONDA_TOKEN }} # Replace with the right name of your secret |
0 commit comments