We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e24a3a1 commit a7787d5Copy full SHA for a7787d5
1 file changed
.github/workflows/build_and_deploy.yml
@@ -1,6 +1,8 @@
1
name: build-and-deploy
2
3
on:
4
+ schedule:
5
+ - cron: '0 18 * * *'
6
push:
7
branches:
8
- main
@@ -23,6 +25,21 @@ jobs:
23
25
steps:
24
26
- name: Checkout
27
uses: actions/checkout@v4
28
+
29
+ - name: Install stable toolchain
30
+ uses: actions-rs/toolchain@v1
31
32
+ - name: Install alignoth
33
+ run: cargo install alignoth
34
35
+ - name: Checkout alignoth repo
36
+ uses: actions/checkout@v4
37
+ with:
38
+ repository: alignoth/alignoth
39
+ path: alignoth
40
41
+ - name: Build preview html
42
+ run: alignoth -b alignoth/tests/sample_3/NA12878.bam -r alignoth/tests/sample_3/ref.fa -g 1:250-500 --html --max-read-depth 40 > src/preview.html
43
44
- name: locosopa
45
uses: koesterlab/locosopa@main
0 commit comments