0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/.github/workflows/release.yml

239 lines
6.4 KiB
YAML
Raw Normal View History

2022-07-01 23:08:19 -05:00
name: Release
on:
workflow_dispatch:
2023-03-12 08:32:13 -05:00
inputs:
target:
description: 'The release target of Logto'
required: true
default: dev
type: choice
options:
- prod
- dev
push:
branches:
2022-07-01 05:47:14 -05:00
- master
tags:
- v*.*.*
concurrency:
2023-01-18 22:22:17 -05:00
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
jobs:
2023-03-12 08:32:13 -05:00
dockerize-core:
2022-10-13 09:08:59 -05:00
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
runs-on: ubuntu-latest
2023-02-15 04:47:11 -05:00
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
2022-07-01 23:08:19 -05:00
with:
fetch-depth: 0
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
svhd/logto
2022-07-03 02:52:05 -05:00
# https://github.com/docker/metadata-action#typesemver
2022-07-01 05:47:14 -05:00
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
2022-07-03 03:56:42 -05:00
type=raw,enable=${{ startsWith(github.ref, 'refs/tags/v') }},value=prerelease
2023-03-12 08:32:13 -05:00
type=raw,enable=${{ inputs.target == 'prod' }},value=prod
2022-07-01 23:08:19 -05:00
type=edge
2022-07-01 05:47:14 -05:00
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
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 }}
2023-02-15 06:04:36 -05:00
- name: Setup Docker Buildx
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: docker/setup-buildx-action@v2
- name: Build and push
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
uses: docker/build-push-action@v4
with:
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2022-06-24 02:39:17 -05:00
- name: Setup Depot
2023-02-15 06:04:36 -05:00
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: depot/setup-action@v1
2023-02-15 06:04:36 -05:00
- name: Build and push
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: depot/build-push-action@v1
with:
platforms: linux/amd64, linux/arm64
project: g902cp6dvv
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-07-02 04:00:14 -05:00
2023-03-12 08:32:13 -05:00
dockerize-cloud:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/logto-io/cloud
# https://github.com/docker/metadata-action
tags: |
type=raw,enable=${{ inputs.target == 'prod' }},value=prod
type=edge
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: silverhand-bot
password: ${{ secrets.BOT_PAT }}
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
uses: docker/build-push-action@v4
with:
file: Dockerfile.cloud
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: |
admin_endpoint=https://auth.logto.${{ inputs.target == 'prod' && 'io' || 'dev' }}/
deploy:
runs-on: ubuntu-latest
2023-03-12 08:32:13 -05:00
needs: [dockerize-core, dockerize-cloud]
environment: ${{ inputs.target || 'dev' }}
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
steps:
- uses: actions/checkout@v3
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v2
2023-03-12 08:32:13 -05:00
- name: Deploy database alteration
if: github.environment == 'dev'
run: |
pnpm prepack
pnpm cli db alt deploy next
env:
2023-03-12 08:32:13 -05:00
DB_URL: ${{ secrets.DB_URL }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: silverhand-bot
password: ${{ secrets.BOT_PAT }}
- name: Login via Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
2023-03-12 08:32:13 -05:00
- name: Deploy core to containerapp
uses: azure/webapps-deploy@v2
with:
app-name: ${{ env.APP_NAME_CORE }}
images: ghcr.io/logto-io/logto:${{ env.DOCKER_TAG }}
- name: Deploy cloud to containerapp
2022-12-13 12:07:38 -05:00
uses: azure/webapps-deploy@v2
with:
2023-03-12 08:32:13 -05:00
app-name: ${{ env.APP_NAME_CLOUD }}
images: ghcr.io/logto-io/cloud:${{ env.DOCKER_TAG }}
2022-12-29 01:52:43 -05:00
# Publish packages and create git tags if needed
publish-and-tag:
2022-10-21 00:59:08 -05:00
runs-on: ubuntu-latest
2022-11-14 23:53:28 -05:00
env:
2022-12-29 01:52:43 -05:00
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
2022-11-14 23:53:28 -05:00
2022-10-21 00:59:08 -05:00
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
2022-12-29 01:52:43 -05:00
steps:
2022-12-29 02:25:12 -05:00
- uses: actions/checkout@v3
with:
# Set Git operations with the bot PAT since we have tag protection rule
token: ${{ secrets.BOT_PAT }}
fetch-depth: 0
2022-12-29 02:25:12 -05:00
2022-10-21 00:59:08 -05:00
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v2
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
with:
gpg_private_key: ${{ secrets.BOT_GPG_KEY }}
passphrase: ${{ secrets.BOT_GPG_PASSPHRASE }}
git_user_signingkey: true
git_commit_gpgsign: true
git_tag_gpgsign: true
2022-12-29 02:25:12 -05:00
- name: Configure Git user
run: |
git config --global user.email bot@silverhand.io
git config --global user.name silverhand-bot
2022-12-29 01:52:43 -05:00
- name: Publish
2022-12-29 21:46:28 -05:00
run: node .scripts/publish.js
2022-07-01 23:08:19 -05:00
create-github-release:
environment: release
2022-07-01 23:08:19 -05:00
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2022-07-01 23:40:22 -05:00
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v2
2022-07-01 23:40:22 -05:00
- name: Build
2022-10-17 06:37:59 -05:00
run: pnpm -r build
2022-07-01 23:08:19 -05:00
- name: Package
2022-11-11 07:17:50 -05:00
run: ./.scripts/package.sh
2022-07-01 23:08:19 -05:00
- name: Release
uses: softprops/action-gh-release@v1
with:
2022-07-02 04:00:14 -05:00
token: ${{ secrets.BOT_PAT }}
body: ''
2022-07-01 23:08:19 -05:00
files: /tmp/logto.tar.gz
append_body: true