-
Notifications
You must be signed in to change notification settings - Fork 33
70 lines (62 loc) · 2.37 KB
/
build-widget.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Publish Widget to Production
on:
workflow_call:
secrets:
GH_PACKAGES:
required: true
workflow_dispatch:
jobs:
build_widget:
if: "!contains(github.event.head_commit.message, 'ci skip')"
runs-on: ubuntu-latest
timeout-minutes: 80
permissions:
contents: read
packages: write
deployments: write
steps:
- uses: actions/checkout@v2
- name: Setup kernel for react native, increase watchers
run: echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
- name: Envsetup
working-directory: apps/widget
run: npm run envsetup
- name: Build & Tag Docker image
env:
REGISTERY_OWNER: implerhq
DOCKER_NAME: impler/widget
IMAGE_TAG: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
docker build -t ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:$IMAGE_TAG -f apps/widget/Dockerfile .
docker tag ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:$IMAGE_TAG ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:latest
- name: Run Docker container
env:
REGISTERY_OWNER: implerhq
DOCKER_NAME: impler/widget
IMAGE_TAG: ${{ github.event.pull_request.head.sha || github.sha }}
run: docker run --network=host -dit ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:$IMAGE_TAG
- name: Check application health
run: |
for i in {1..5}; do
if curl --output /dev/null --silent --head --fail http://localhost:3500; then
exit 0
fi
echo "Waiting for the application to start..."
sleep 5
done
echo "Application failed to start"
exit 1
- name: Log in to GitHub Container Registry
env:
GH_ACTOR: implerhq
GH_PASSWORD: ${{ secrets.GH_PACKAGES }}
run: echo $GH_PASSWORD | docker login ghcr.io -u $GH_ACTOR --password-stdin
- name: Push Docker image
env:
REGISTERY_OWNER: implerhq
DOCKER_NAME: impler/widget
IMAGE_TAG: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
docker push ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:$IMAGE_TAG
docker push ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:latest
echo "::set-output name=IMAGE::ghcr.io/$REGISTERY_OWNER/$DOCKER_NAME:$IMAGE_TAG"