We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4a6bb96 + 8868df6 commit e3ad46cCopy full SHA for e3ad46c
.github/workflows/copy_conda_packages.yml
@@ -1,7 +1,8 @@
1
on:
2
schedule:
3
# Run once a day at 20:10 UTC
4
- - cron: '10 20 * * *'
+ # But for now every hour on 35.
5
+ - cron: '35 * * * *'
6
7
jobs:
8
copy_packages:
@@ -10,12 +11,18 @@ jobs:
10
11
12
- uses: actions/checkout@v1
13
- - name: Set up Python ${{ matrix.python-version }}
14
- uses: actions/setup-python@v1
+ - uses: goanpeca/setup-miniconda@v1
15
with:
16
- python-version: 3.8
+ 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
23
24
- name: Perform copy
25
26
run: |
27
git clone git://github.com/glue-viz/conda-sync.git
28
mv conda-sync/sync.py .
0 commit comments