Skip to content

Commit d0d96e4

Browse files
committed
fix for osx
1 parent 1265878 commit d0d96e4

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,13 @@ jobs:
9191
shell: bash -l {0}
9292
run: |
9393
git config --global --add safe.directory '*'
94+
conda install anaconda-client conda-build
9495
conda build recipe/ --variant-config-files ${{ matrix.config_file }} --output-folder ./pkg/ --no-include-recipe --no-anaconda-upload -c conda-forge
9596
9697
- name: Upload to conda
9798
shell: bash -l {0}
9899
run: |
99-
/opt/conda/bin/anaconda -t ${{ secrets.ANACONDA_TOKEN_BASIC }} upload -u acellera pkg/*/openmm-*.tar.bz2 --skip-existing
100+
anaconda -t ${{ secrets.ANACONDA_TOKEN_BASIC }} upload -u acellera pkg/*/openmm-*.tar.bz2 --skip-existing
100101
101102
deploy_osx_arm64:
102103
strategy:
@@ -128,12 +129,13 @@ jobs:
128129
shell: bash -l {0}
129130
run: |
130131
git config --global --add safe.directory '*'
132+
conda install anaconda-client conda-build
131133
conda build recipe/ --variant-config-files ${{ matrix.config_file }} --output-folder ./pkg/ --no-include-recipe --no-anaconda-upload -c conda-forge
132134
133135
- name: Upload to conda
134136
shell: bash -l {0}
135137
run: |
136-
/opt/conda/bin/anaconda -t ${{ secrets.ANACONDA_TOKEN_BASIC }} upload -u acellera pkg/*/openmm-*.tar.bz2 --skip-existing
138+
anaconda -t ${{ secrets.ANACONDA_TOKEN_BASIC }} upload -u acellera pkg/*/openmm-*.tar.bz2 --skip-existing
137139
138140
# deploy_win_64_cuda11:
139141
# strategy:

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ The idea is to be able to quickly create OpenMM release candidates from specific
55

66
To create a new release you need to:
77

8-
1. Update the git_rev version in the meta.yaml file in the source section to the desired commit.
9-
2. Push your changes
8+
1. Open the recipe/meta.yaml file and change the package version at the top of the file.
9+
2. Update the git_rev version in the meta.yaml file in the source section to point to the desired commit.
10+
3. Push your changes

0 commit comments

Comments
 (0)