generated from runwhen-contrib/codecollection-template
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (37 loc) · 1.17 KB
/
build.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
name: Build And Push
on:
push:
branches:
- main
pull_request:
types: [opened]
branches:
- 'main'
workflow_dispatch:
permissions:
contents: "read"
id-token: "write"
packages: "write"
jobs:
build-and-push-ghcr:
runs-on: ubuntu-latest
env:
codebundle: rds-mysql-conn-count
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |-
docker build \
-t "ghcr.io/${{ github.repository }}:latest" \
-t "ghcr.io/${{ github.repository }}:main" \
-f Dockerfile .
- name: Smoke Test Build
run: |
docker run -d -p 3000:3000 --name mycodecollection ghcr.io/${{ github.repository }}:latest
docker exec mycodecollection bash -c "ro /app/codecollection/codebundles/${{ env.codebundle }}/sli.robot && ls -R /robot_logs"
curl --fail-with-body http://localhost:3000/${{ env.codebundle }}/sli-log.html
- name: Push
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login --username ${{ github.actor }} --password-stdin ghcr.io
docker push ghcr.io/${{ github.repository }} --all-tags