Skip to content

Commit

Permalink
Merge pull request #351 from sot/workflow
Browse files Browse the repository at this point in the history
Shiny workflow update
  • Loading branch information
javierggt authored Aug 19, 2020
2 parents 366d48f + 40106bc commit d38af97
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ jobs:
- name: Update channel
run: |
rsync -a package/ ${CONDA_CHANNEL_DIR}
for d in ${CONDA_CHANNEL_DIR}/*; do conda index $d; done;
for d in noarch linux-64 osx-64 win-64;
do
if [ -d "${CONDA_CHANNEL_DIR}/$d" ];
then
conda index ${CONDA_CHANNEL_DIR}/$d;
fi
done;
env:
CONDA_CHANNEL_DIR: /proj/sot/ska/www/ASPECT/ska3-conda/masters

0 comments on commit d38af97

Please sign in to comment.