2022-07-01 23:08:19 -05:00
|
|
|
name: Release
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
on:
|
2022-11-16 05:49:21 -05:00
|
|
|
workflow_dispatch:
|
2022-06-23 06:17:02 -05:00
|
|
|
push:
|
2022-09-05 04:49:11 -05:00
|
|
|
branches:
|
2022-07-01 05:47:14 -05:00
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- v*.*.*
|
2022-06-23 06:17:02 -05:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: dockerize-${{ github.ref }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
dockerize:
|
2022-10-13 09:08:59 -05:00
|
|
|
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
|
2022-06-23 06:17:02 -05:00
|
|
|
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: |
|
2022-08-11 07:58:53 -05:00
|
|
|
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
|
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-09-05 04:49:11 -05:00
|
|
|
|
2022-08-11 07:58:53 -05:00
|
|
|
- name: Login to DockerHub
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
2022-06-23 06:17:02 -05:00
|
|
|
|
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-07-02 04:00:14 -05:00
|
|
|
|
2022-10-01 09:44:29 -05:00
|
|
|
deploy-dev:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: dockerize
|
|
|
|
environment: dev
|
2022-10-01 10:41:14 -05:00
|
|
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
2022-10-01 09:44:29 -05:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Login via Azure CLI
|
|
|
|
uses: azure/login@v1
|
|
|
|
with:
|
|
|
|
creds: ${{ secrets.AZURE_CREDENTIALS }}
|
|
|
|
|
|
|
|
- name: Deploy to containerapp
|
2022-12-13 12:07:38 -05:00
|
|
|
uses: azure/webapps-deploy@v2
|
2022-10-01 09:44:29 -05:00
|
|
|
with:
|
2022-12-13 12:07:38 -05:00
|
|
|
app-name: logto-dev
|
|
|
|
images: svhd/logto:edge
|
2022-10-01 09:44:29 -05:00
|
|
|
|
2022-10-21 00:59:08 -05:00
|
|
|
release-changesets:
|
|
|
|
runs-on: ubuntu-latest
|
2022-11-14 23:53:28 -05:00
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTOMATION_TOKEN }}
|
|
|
|
|
2022-10-21 00:59:08 -05:00
|
|
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2022-11-15 00:24:30 -05:00
|
|
|
with:
|
|
|
|
# Set Git operations with the bot PAT since we have tag protection rule
|
|
|
|
token: ${{ secrets.BOT_PAT }}
|
2022-11-16 02:35:53 -05:00
|
|
|
fetch-depth: 0
|
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
|
|
|
|
|
|
|
|
- name: Configure Git user
|
|
|
|
run: |
|
|
|
|
git config --global user.email bot@silverhand.io
|
|
|
|
git config --global user.name silverhand-bot
|
|
|
|
|
|
|
|
- name: Create release pull request
|
|
|
|
uses: changesets/action@v1
|
|
|
|
with:
|
2022-11-11 01:29:35 -05:00
|
|
|
# Use our customized publish flow. See https://github.com/changesets/changesets/issues/833 for the limit of changesets.
|
|
|
|
publish: node .scripts/publish.js
|
2022-11-16 05:02:19 -05:00
|
|
|
# `changeset version` won't run version lifecycle scripts, see https://github.com/changesets/changesets/issues/860
|
|
|
|
version: pnpm ci:version
|
2022-10-21 00:59:08 -05:00
|
|
|
commit: 'release: version packages'
|
|
|
|
title: 'release: version packages'
|
2022-10-23 23:03:00 -05:00
|
|
|
# Create by our rules defined in `/.changeset/README.md`.
|
|
|
|
createGithubReleases: false
|
2022-10-21 00:59:08 -05:00
|
|
|
setupGitUser: false
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.BOT_PAT }}
|
2022-10-01 09:44:29 -05:00
|
|
|
|
2022-07-01 23:08:19 -05:00
|
|
|
create-github-release:
|
2022-10-12 22:32:48 -05:00
|
|
|
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
|
2022-10-16 23:07:50 -05:00
|
|
|
uses: silverhand-io/actions-node-pnpm-run-steps@v2
|
2022-07-01 23:40:22 -05:00
|
|
|
|
2022-09-05 04:49:11 -05:00
|
|
|
- name: Build
|
2022-10-17 06:37:59 -05:00
|
|
|
run: pnpm -r build
|
2022-09-05 04:49:11 -05:00
|
|
|
|
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 }}
|
2022-11-11 01:29:35 -05:00
|
|
|
body: <Release notes WIP>
|
2022-07-01 23:08:19 -05:00
|
|
|
files: /tmp/logto.tar.gz
|