2022-07-01 23:08:19 -05:00
|
|
|
name: Release
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-07-01 05:47:14 -05:00
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- v*.*.*
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: dockerize-${{ github.ref }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockerize:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-07-01 23:08:19 -05:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2022-06-23 06:17:02 -05:00
|
|
|
|
2022-07-01 05:47:14 -05:00
|
|
|
- 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}}
|
2022-07-01 23:08:19 -05:00
|
|
|
type=edge
|
2022-07-01 05:47:14 -05:00
|
|
|
|
2022-06-23 06:17:02 -05:00
|
|
|
- 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
|
2022-07-01 05:47:14 -05:00
|
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
|
|
labels: ${{ steps.meta.outputs.labels }}
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
- name: Compose up
|
2022-07-01 23:18:55 -05:00
|
|
|
run: TAG=${{ steps.meta.outputs.tags[0] }} docker compose up -d
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
- name: Sleep for 30 seconds
|
|
|
|
run: sleep 30s
|
|
|
|
|
|
|
|
- name: Health check
|
|
|
|
run: curl http://localhost:3001/api/status -If
|
2022-07-01 23:08:19 -05:00
|
|
|
|
|
|
|
create-github-release:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Package
|
|
|
|
run: ./package.sh
|
|
|
|
|
|
|
|
- name: Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
with:
|
|
|
|
files: /tmp/logto.tar.gz
|