forked from Bohdan-Khomtchouk/shinyheatmap
-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.59 KB
/
main.yml
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
name: Docker Build CI for Shinyheatmap
on:
push:
branches:
- 'master' # change this whenever you switch branch
jobs:
Build:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Docker Hub
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.QUAY_USERNAME }}
password: ${{ secrets.QUAY_PASSWORD }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
no-cache: true
tags: quay.io/wfma888/shinyheatmap:latest # change this tag to whichever to match container-image
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Notify:
runs-on: ubuntu-latest
needs: Build
steps:
-
name: Install awscli
run: sudo pip install --upgrade pip && pip install awscli
-
name: Send SQS message
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }} # also change '--mesage-body to same' for different containers
run: aws sqs send-message --queue-url 'https://queue.amazonaws.com/474683445819/dcos-refresh' --message-body 'cphg/millerlab-shinyheatmap' || exit 1;
# message-body needs to match serviceID