-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (32 loc) · 1.11 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
name: Docker
on: [push, pull_request]
jobs:
#test building image for PR without push
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: FranzDiebold/[email protected]
- name: Build web image
shell: bash
run: docker build .
#build and push image
push:
runs-on: ubuntu-20.04
if: github.event_name == 'push'
needs: [test]
steps:
- uses: actions/checkout@v2
- uses: FranzDiebold/[email protected]
- name: Build web image
shell: bash
run: docker build -t wycliffeassociates/install4j-docker:$GITHUB_SHA -t wycliffeassociates/install4j-docker:$GITHUB_REF_NAME -t wycliffeassociates/install4j-docker:latest .
- name: Log into registry
shell: bash
env:
DOCKER_PASSWORD: ${{ secrets.DOCKER_HUB_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_HUB_USER }}
run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
- name: Push image
run: |
docker push -a wycliffeassociates/install4j-docker