nocobase/.github/workflows/manual-build-pro-image.yml

141 lines
5.5 KiB
YAML
Raw Normal View History

name: Manual build pro image
2024-01-27 03:09:33 +00:00
2024-02-08 03:35:59 +00:00
concurrency:
2024-10-18 02:30:58 +00:00
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.pr_number }}-${{ github.event.inputs.nocobase_pr_number }}
2024-02-08 03:35:59 +00:00
cancel-in-progress: true
2024-01-27 03:09:33 +00:00
on:
workflow_dispatch:
inputs:
pr_number:
2024-10-18 02:30:58 +00:00
description: 'Please enter the pr number of pro-plugins'
nocobase_pr_number:
description: 'Please enter the pr number of nocobase/nocobase repository'
2024-01-27 03:09:33 +00:00
jobs:
build-and-push:
2024-09-03 12:44:05 +00:00
if: github.event.pull_request.head.repo.fork != true
2024-01-27 03:09:33 +00:00
runs-on: ubuntu-latest
services:
verdaccio:
image: verdaccio/verdaccio:latest
ports:
- 4873:4873
steps:
- name: Get pro plugins
id: get-pro-plugins
run: |
if [[ "${{ github.head_ref || github.ref_name }}" == "main" ]]; then
echo "proRepos=$(echo '${{ vars.PRO_PLUGIN_REPOS }}')" >> $GITHUB_OUTPUT
else
echo "proRepos=$(echo '${{ vars.NEXT_PRO_PLUGIN_REPOS }}')" >> $GITHUB_OUTPUT
fi
2024-09-03 12:44:05 +00:00
- uses: actions/create-github-app-token@v1
id: app-token
2024-09-03 12:44:05 +00:00
with:
app-id: ${{ vars.NOCOBASE_APP_ID }}
private-key: ${{ secrets.NOCOBASE_APP_PRIVATE_KEY }}
repositories: nocobase,pro-plugins,${{ join(fromJSON(steps.get-pro-plugins.outputs.proRepos), ',') }}
2024-09-03 12:44:05 +00:00
skip-token-revoke: true
2024-01-27 03:09:33 +00:00
- name: Checkout
uses: actions/checkout@v3
with:
2024-10-18 02:30:58 +00:00
ref: ${{ github.head_ref || github.ref_name }}
token: ${{ steps.app-token.outputs.token }}
2024-01-27 03:09:33 +00:00
submodules: true
2024-10-18 02:30:58 +00:00
- name: Checkout nocobase/nocobase pr
if: ${{ inputs.nocobase_pr_number != '' }}
shell: bash
run: |
gh pr checkout ${{ inputs.nocobase_pr_number }}
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
2024-01-27 03:09:33 +00:00
- name: Checkout pro-plugins
uses: actions/checkout@v3
with:
repository: nocobase/pro-plugins
path: packages/pro-plugins
2024-10-18 02:30:58 +00:00
ref: ${{ github.head_ref || github.ref_name }}
token: ${{ steps.app-token.outputs.token }}
2024-10-18 02:30:58 +00:00
- name: Checkout pr
if: ${{ inputs.pr_number != '' }}
shell: bash
run: |
cd ./packages/pro-plugins/
gh pr checkout ${{ inputs.pr_number }}
cd ../../
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
- name: Clone pro repos
shell: bash
run: |
for repo in ${{ join(fromJSON(steps.get-pro-plugins.outputs.proRepos), ' ') }}
do
2024-10-10 02:52:54 +00:00
git clone -b ${{ github.head_ref || github.ref_name }} https://x-access-token:${{ steps.app-token.outputs.token }}@github.com/nocobase/$repo.git packages/pro-plugins/@nocobase/$repo
done
2024-01-27 03:09:33 +00:00
- name: rm .git
run: |
rm -rf packages/pro-plugins/.git
for repo in ${{ join(fromJSON(steps.get-pro-plugins.outputs.proRepos), ' ') }}
do
rm -rf packages/pro-plugins/@nocobase/$repo/.git
done
git config --global user.email "you@example.com"
git config --global user.name "Your Name" && git add -A && git commit -m "tmp commit"
2024-01-27 03:09:33 +00:00
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
driver-opts: network=host
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
nocobase/nocobase
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Login to Aliyun Container Registry
uses: docker/login-action@v2
with:
registry: ${{ secrets.ALI_DOCKER_REGISTRY }}
username: ${{ secrets.ALI_DOCKER_USERNAME }}
password: ${{ secrets.ALI_DOCKER_PASSWORD }}
- name: Set variables
run: |
target_directory="./packages/pro-plugins/@nocobase"
subdirectories=$(find "$target_directory" -mindepth 1 -maxdepth 1 -type d -exec basename {} \; | tr '\n' ' ')
trimmed_variable=$(echo "$subdirectories" | xargs)
packageNames="@nocobase/${trimmed_variable// / @nocobase/}"
pluginNames="${trimmed_variable//plugin-/}"
BEFORE_PACK_NOCOBASE="yarn add @nocobase/plugin-notifications @nocobase/plugin-disable-pm-add $packageNames -W"
APPEND_PRESET_LOCAL_PLUGINS="notifications,disable-pm-add,${pluginNames// /,}"
echo "var1=$BEFORE_PACK_NOCOBASE" >> $GITHUB_OUTPUT
echo "var2=$APPEND_PRESET_LOCAL_PLUGINS" >> $GITHUB_OUTPUT
id: vars
2024-01-27 03:09:33 +00:00
- name: Build and push - pr-${{ inputs.pr_number }}-pro
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
build-args: |
VERDACCIO_URL=http://localhost:4873/
COMMIT_HASH=${GITHUB_SHA}
2024-01-27 03:16:22 +00:00
PLUGINS_DIRS=pro-plugins
BEFORE_PACK_NOCOBASE=${{ steps.vars.outputs.var1 }}
APPEND_PRESET_LOCAL_PLUGINS=${{ steps.vars.outputs.var2 }}
2024-01-27 03:09:33 +00:00
push: true
tags: ${{ secrets.ALI_DOCKER_REGISTRY }}/nocobase/nocobase:pr-${{ inputs.pr_number }}-pro
- name: Deploy NocoBase
run: |
curl --retry 2 --location --request POST "${{secrets.NOCOBASE_DEPLOY_HOST}}pr-${{ inputs.pr_number }}-pro" \
--header 'Content-Type: application/json' \
-d "{
\"tag\": \"pr-${{ inputs.pr_number }}-pro\",
\"dialect\": \"postgres\"
}"