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

116 lines
2.9 KiB
YAML
Raw Normal View History

2022-07-01 23:08:19 -05:00
name: Release
on:
push:
branches:
2022-07-01 05:47:14 -05:00
- master
tags:
- v*.*.*
concurrency:
group: dockerize-${{ github.ref }}
jobs:
dockerize:
2022-10-13 09:08:59 -05:00
environment: ${{ startsWith(github.ref, 'refs/tags/') && 'release' || '' }}
runs-on: ubuntu-latest
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
2022-07-01 23:08:19 -05:00
type=edge
2022-07-01 05:47:14 -05:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- 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 }}
- name: Build and push
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
deploy-dev:
runs-on: ubuntu-latest
needs: dockerize
environment: dev
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
steps:
- name: Login via Azure CLI
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Deploy to containerapp
uses: azure/CLI@v1
with:
inlineScript: |
az config set extension.use_dynamic_install=yes_without_prompt
az containerapp update -n logto-dev -g LogtoDev --image svhd/logto:edge
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
2022-07-02 23:07:00 -05:00
- name: Extract changelog
run: |
git diff HEAD~1 HEAD --exit-code -- CHANGELOG.md | \
tail -n +5 | \
grep -E "^\+" | \
sed -E 's/^\+//' | \
cat -s \
> /tmp/changelog.txt
- name: Build
run: pnpm -- lerna run build --stream
2022-07-01 23:08:19 -05:00
- name: Package
run: ./package.sh
- name: Release
uses: softprops/action-gh-release@v1
with:
2022-07-02 04:00:14 -05:00
token: ${{ secrets.BOT_PAT }}
2022-07-02 23:07:00 -05:00
body_path: /tmp/changelog.txt
2022-07-01 23:08:19 -05:00
files: /tmp/logto.tar.gz