Skip to content

Commit 4a6bb96

Browse files
authored
Merge pull request #56 from mwcraig/add-cron-job-for-copying
Add workflow to copy packages
2 parents 0172e8f + ee74756 commit 4a6bb96

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
on:
2+
schedule:
3+
# Run once a day at 20:10 UTC
4+
- cron: '10 20 * * *'
5+
6+
jobs:
7+
copy_packages:
8+
runs-on: ubuntu-latest
9+
steps:
10+
11+
- uses: actions/checkout@v1
12+
13+
- name: Set up Python ${{ matrix.python-version }}
14+
uses: actions/setup-python@v1
15+
with:
16+
python-version: 3.8
17+
18+
- name: Perform copy
19+
run: |
20+
git clone git://github.com/glue-viz/conda-sync.git
21+
mv conda-sync/sync.py .
22+
python drive_copy.py

vp_copy.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
# not in the defaults channel.
55
- name: autobahn
66
- name: txaio
7+
- name: vpython

0 commit comments

Comments
 (0)