Skip to content

Commit e3ad46c

Browse files
authored
Merge pull request #57 from mwcraig/update-cron-time
Change cron frequency for testing
2 parents 4a6bb96 + 8868df6 commit e3ad46c

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/copy_conda_packages.yml

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

67
jobs:
78
copy_packages:
@@ -10,12 +11,18 @@ jobs:
1011

1112
- uses: actions/checkout@v1
1213

13-
- name: Set up Python ${{ matrix.python-version }}
14-
uses: actions/setup-python@v1
14+
- uses: goanpeca/setup-miniconda@v1
1515
with:
16-
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
1723
1824
- name: Perform copy
25+
shell: bash -l {0}
1926
run: |
2027
git clone git://github.com/glue-viz/conda-sync.git
2128
mv conda-sync/sync.py .

0 commit comments

Comments
 (0)