2022-06-23 06:17:02 -05:00
|
|
|
name: Dockerize
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: dockerize-${{ github.ref }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockerize:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
|
2022-06-24 02:39:17 -05:00
|
|
|
- name: Login to GitHub Container Registry
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: ghcr.io
|
|
|
|
username: silverhand-bot
|
|
|
|
password: ${{ secrets.BOT_PAT }}
|
|
|
|
|
|
|
|
- name: Build and push
|
2022-06-23 06:17:02 -05:00
|
|
|
uses: docker/build-push-action@v3
|
|
|
|
with:
|
|
|
|
context: .
|
2022-06-24 02:39:17 -05:00
|
|
|
push: true
|
|
|
|
tags: ghcr.io/logto-io/logto:latest
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
- name: Compose up
|
|
|
|
run: docker compose up -d
|
|
|
|
|
|
|
|
- name: Sleep for 30 seconds
|
|
|
|
run: sleep 30s
|
|
|
|
|
|
|
|
- name: Health check
|
|
|
|
run: curl http://localhost:3001/api/status -If
|