-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (61 loc) · 1.96 KB
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Thid workflow will build and push the import pipeline container.
# the plan later will be to include unit tests as well
name: Building Pipeline Containers
on:
push:
branches:
- 'dev'
- 'python-update'
jobs:
starting-notification:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Intital notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_MESSAGE: 'Creating new pipeline image in docker hub'
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
MSG_MINIMAL: true
create-docker-image:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: docker login
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: docker build
run: docker build -f Dockerfile -t rnacentral/rnacentral-import-pipeline:latest .
- name: docker push
run: docker push rnacentral/rnacentral-import-pipeline:latest
finished-notification:
needs:
- create-docker-image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Finished notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_MESSAGE: 'New pipeline image pushed to docker hub'
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
MSG_MINIMAL: true
singularity-conversion:
needs:
- create-docker-image
uses: rnacentral/rnacentral-import-pipeline/.github/workflows/singularity.yaml@dev
secrets: inherit
finished-singularity:
needs:
- singularity-conversion
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Finished notification
uses: rtCamp/action-slack-notify@v2
env:
SLACK_MESSAGE: 'New singularity image pushed to ghcr'
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
MSG_MINIMAL: true