Skip to content

Commit 8868df6

Browse files
committed
Switch to conda python for this workflow
1 parent b791317 commit 8868df6

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.github/workflows/copy_conda_packages.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
on:
22
schedule:
33
# Run once a day at 20:10 UTC
4-
# But for now every hour on 30.
5-
- cron: '30 * * * *'
4+
# But for now every hour on 35.
5+
- cron: '35 * * * *'
66

77
jobs:
88
copy_packages:
@@ -11,12 +11,18 @@ jobs:
1111

1212
- uses: actions/checkout@v1
1313

14-
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v1
14+
- uses: goanpeca/setup-miniconda@v1
1615
with:
17-
python-version: 3.8
16+
auto-update-conda: true
17+
python-version: 3.7
18+
19+
- name: Install dependencies
20+
shell: bash -l {0}
21+
run: |
22+
conda install anaconda-client
1823
1924
- name: Perform copy
25+
shell: bash -l {0}
2026
run: |
2127
git clone git://github.com/glue-viz/conda-sync.git
2228
mv conda-sync/sync.py .

0 commit comments

Comments
 (0)