Skip to content

Commit 3ce7f10

Browse files
committed
Merge branch 'dev'
2 parents 98d1d0a + 89233d5 commit 3ce7f10

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/docker-image.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,19 @@ on:
44
push:
55
branches: [ "main", "dev" ]
66
paths:
7+
- '.github/workflows/docker-image.yaml'
78
- 'Dockerfile'
9+
- 'Containerfile'
810
- 'pyproject.toml'
11+
- 'pixi.lock'
912
pull_request:
1013
branches: [ "main" ]
1114
paths:
15+
- '.github/workflows/docker-image.yaml'
1216
- 'Dockerfile'
17+
- 'Containerfile'
1318
- 'pyproject.toml'
19+
- 'pixi.lock'
1420

1521
jobs:
1622

@@ -21,4 +27,4 @@ jobs:
2127
steps:
2228
- uses: actions/checkout@v3
2329
- name: Build the Docker image
24-
run: docker build . --tag 30252:ci_test_$(date +%s)
30+
run: docker build --file Containerfile --tag oneroof:ci_test_$(date +%s) .

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
!main.nf
2121
!nextflow.config
2222

23+
# github action workflows
24+
!/.github
25+
!/.github/workflows
26+
!/.github/workflows/*.yml
27+
!/.github/workflows/*.yaml
28+
2329
# nextflow workflows
2430
!/workflows
2531
!/workflows/*.nf

0 commit comments

Comments
 (0)