Skip to content

Commit

Permalink
Merge pull request #3 from acisops/workflow
Browse files Browse the repository at this point in the history
Shiny workflow update
  • Loading branch information
jzuhone authored Aug 21, 2020
2 parents 26bf90a + 3f4ab38 commit 03516b9
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 @@ -97,6 +97,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 03516b9

Please sign in to comment.