0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-20 21:32:31 -05:00
logto/.github/workflows/release.yml

173 lines
4.5 KiB
YAML
Raw Normal View History

2022-07-02 12:08:19 +08:00
name: Release
on:
workflow_dispatch:
push:
branches:
2022-07-01 18:47:14 +08:00
- master
tags:
- v*.*.*
concurrency:
2023-01-19 11:22:17 +08:00
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
jobs:
dockerize:
2022-10-13 22:08:59 +08:00
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
runs-on: ubuntu-latest
2023-02-15 17:47:11 +08:00
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
2022-07-02 12:08:19 +08:00
with:
fetch-depth: 0
2022-07-01 18:47:14 +08:00
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/logto-io/logto
svhd/logto
2022-07-03 15:52:05 +08:00
# https://github.com/docker/metadata-action#typesemver
2022-07-01 18:47:14 +08:00
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
2022-07-03 16:56:42 +08:00
type=raw,enable=${{ startsWith(github.ref, 'refs/tags/v') }},value=prerelease
2022-07-02 12:08:19 +08:00
type=edge
2022-07-01 18:47:14 +08:00
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
2022-06-24 15:39:17 +08: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 19:04:36 +08: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 15:39:17 +08:00
- name: Setup Depot
2023-02-15 19:04:36 +08:00
if: ${{ startsWith(github.ref, 'refs/tags/') }}
uses: depot/setup-action@v1
2023-02-15 19:04:36 +08: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 15:39:17 +08:00
push: true
2022-07-01 18:47:14 +08:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
2022-07-02 17:00:14 +08:00
deploy-dev:
runs-on: ubuntu-latest
needs: dockerize
environment: 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
- name: Deploy alteration
run: |
pnpm prepack
pnpm cli db alt deploy next
env:
DB_URL: ${{ secrets.DB_URL_DEV }}
- name: Login via Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Deploy to containerapp
2022-12-14 01:07:38 +08:00
uses: azure/webapps-deploy@v2
with:
2022-12-14 01:07:38 +08:00
app-name: logto-dev
images: svhd/logto:edge
2022-12-29 14:52:43 +08:00
# Publish packages and create git tags if needed
publish-and-tag:
2022-10-21 13:59:08 +08:00
runs-on: ubuntu-latest
2022-11-15 12:53:28 +08:00
env:
2022-12-29 14:52:43 +08:00
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
2022-11-15 12:53:28 +08:00
2022-10-21 13:59:08 +08:00
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
2022-12-29 14:52:43 +08:00
steps:
2022-12-29 15:25:12 +08: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 15:25:12 +08:00
2022-10-21 13:59:08 +08: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 15:25:12 +08:00
- name: Configure Git user
run: |
git config --global user.email bot@silverhand.io
git config --global user.name silverhand-bot
2022-12-29 14:52:43 +08:00
- name: Publish
2022-12-30 10:46:28 +08:00
run: node .scripts/publish.js
2022-07-02 12:08:19 +08:00
create-github-release:
environment: release
2022-07-02 12:08:19 +08:00
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
2022-07-02 12:40:22 +08:00
- name: Setup Node and pnpm
uses: silverhand-io/actions-node-pnpm-run-steps@v2
2022-07-02 12:40:22 +08:00
- name: Build
2022-10-17 19:37:59 +08:00
run: pnpm -r build
2022-07-02 12:08:19 +08:00
- name: Package
2022-11-11 20:17:50 +08:00
run: ./.scripts/package.sh
2022-07-02 12:08:19 +08:00
- name: Release
uses: softprops/action-gh-release@v1
with:
2022-07-02 17:00:14 +08:00
token: ${{ secrets.BOT_PAT }}
2022-11-11 14:29:35 +08:00
body: <Release notes WIP>
2022-07-02 12:08:19 +08:00
files: /tmp/logto.tar.gz