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

181 lines
4.6 KiB
YAML
Raw Permalink Normal View History

2022-07-01 23:08:19 -05:00
name: Release
on:
push:
branches:
- master
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
jobs:
dockerize:
if: startsWith(github.ref, 'refs/tags/')
environment: release
runs-on: ubuntu-latest
2023-02-15 04:47:11 -05:00
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
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@v5
2022-07-01 05:47:14 -05:00
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-01 23:08:19 -05:00
type=edge
2022-07-01 05:47:14 -05:00
- name: Login to DockerHub
uses: docker/login-action@v3
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@v3
2022-06-24 02:39:17 -05:00
with:
registry: ghcr.io
username: silverhand-bot
password: ${{ secrets.BOT_PAT }}
- name: Setup Depot
uses: depot/setup-action@v1
2023-02-15 06:04:36 -05:00
- name: Build and push
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 }}
# Build and push the edge image on every master push
# Use official docker workflows since we only need to build amd64 images.
dockerize-edge:
if: ${{ !startsWith(github.ref, 'refs/tags/')}}
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/logto-io/logto
svhd/logto
tags: |
type=edge
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: |
ghcr.io
username: silverhand-bot
password: ${{ secrets.BOT_PAT }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push docker image
uses: docker/build-push-action@v6
with:
platforms: linux/amd64
context: .
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
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:
- uses: actions/checkout@v4
2022-12-29 02:25:12 -05:00
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@v5
with:
pnpm-version: 9
2022-10-21 00:59:08 -05:00
- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v6
2022-10-21 00:59:08 -05:00
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@v4
2022-07-01 23:08:19 -05:00
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@v5
with:
pnpm-version: 9
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@v2
2022-07-01 23:08:19 -05:00
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