Skip to content

Commit

Permalink
Merge pull request #15 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 00ef2ed + cafcc17 commit 757bb24
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 757bb24

Please sign in to comment.