mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: Dockerize
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v*.*.*
|
|
|
|
concurrency:
|
|
group: dockerize-${{ github.ref }}
|
|
|
|
jobs:
|
|
dockerize:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
ghcr.io/logto-io/logto
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{major}}
|
|
type=raw,value=dev
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- 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
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
- name: Compose up
|
|
run: TAG=dev docker compose up -d
|
|
|
|
- name: Sleep for 30 seconds
|
|
run: sleep 30s
|
|
|
|
- name: Health check
|
|
run: curl http://localhost:3001/api/status -If
|