Skip to content

update slx's configs #13

update slx's configs

update slx's configs #13

Workflow file for this run

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