mirror of
https://gitee.com/nocobase/nocobase.git
synced 2024-11-29 18:58:26 +08:00
Merge branch 'next' into develop
Some checks failed
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase frontEnd test / frontend-test (20) (push) Waiting to run
Build pro image / get-plugins (push) Has been cancelled
NocoBase backend test / sqlite-test (20, false) (push) Has been cancelled
NocoBase backend test / sqlite-test (20, true) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, nocobase, false) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, nocobase, true) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, public, false) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, public, true) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, nocobase, false) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, nocobase, true) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, public, false) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, public, true) (push) Has been cancelled
NocoBase backend test / mysql-test (20, false) (push) Has been cancelled
NocoBase backend test / mysql-test (20, true) (push) Has been cancelled
NocoBase backend test / mariadb-test (20, false) (push) Has been cancelled
NocoBase backend test / mariadb-test (20, true) (push) Has been cancelled
Test on Windows / build (push) Has been cancelled
Build pro image / build-and-push (push) Has been cancelled
Some checks failed
E2E / Build (push) Waiting to run
E2E / Core and plugins (push) Blocked by required conditions
E2E / plugin-workflow (push) Blocked by required conditions
E2E / plugin-workflow-approval (push) Blocked by required conditions
E2E / plugin-data-source-main (push) Blocked by required conditions
E2E / Comment on PR (push) Blocked by required conditions
NocoBase frontEnd test / frontend-test (20) (push) Waiting to run
Build pro image / get-plugins (push) Has been cancelled
NocoBase backend test / sqlite-test (20, false) (push) Has been cancelled
NocoBase backend test / sqlite-test (20, true) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, nocobase, false) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, nocobase, true) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, public, false) (push) Has been cancelled
NocoBase backend test / postgres-test (public, 20, public, true) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, nocobase, false) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, nocobase, true) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, public, false) (push) Has been cancelled
NocoBase backend test / postgres-test (user_schema, 20, public, true) (push) Has been cancelled
NocoBase backend test / mysql-test (20, false) (push) Has been cancelled
NocoBase backend test / mysql-test (20, true) (push) Has been cancelled
NocoBase backend test / mariadb-test (20, false) (push) Has been cancelled
NocoBase backend test / mariadb-test (20, true) (push) Has been cancelled
Test on Windows / build (push) Has been cancelled
Build pro image / build-and-push (push) Has been cancelled
This commit is contained in:
commit
6ad195b969
13
.github/workflows/build-pro-image.yml
vendored
13
.github/workflows/build-pro-image.yml
vendored
@ -178,3 +178,16 @@ jobs:
|
|||||||
\"tag\": \"$APP_NAME\",
|
\"tag\": \"$APP_NAME\",
|
||||||
\"dialect\": \"postgres\"
|
\"dialect\": \"postgres\"
|
||||||
}"
|
}"
|
||||||
|
- name: Deploy NocoBase V2
|
||||||
|
env:
|
||||||
|
IMAGE_TAG: ${{ steps.meta.outputs.tags }}
|
||||||
|
run: |
|
||||||
|
echo $IMAGE_TAG
|
||||||
|
export APP_NAME=$(echo $IMAGE_TAG | cut -d ":" -f 2)
|
||||||
|
echo $APP_NAME
|
||||||
|
curl --retry 2 --location --request POST "${{secrets.NOCOBASE_DEPLOY_HOST_V2}}$APP_NAME" \
|
||||||
|
--header 'Content-Type: application/json' \
|
||||||
|
-d "{
|
||||||
|
\"tag\": \"$APP_NAME\",
|
||||||
|
\"dialect\": \"postgres\"
|
||||||
|
}"
|
||||||
|
8
.github/workflows/manual-build-pro-image.yml
vendored
8
.github/workflows/manual-build-pro-image.yml
vendored
@ -152,3 +152,11 @@ jobs:
|
|||||||
\"tag\": \"${{ steps.get-tag.outputs.tag }}\",
|
\"tag\": \"${{ steps.get-tag.outputs.tag }}\",
|
||||||
\"dialect\": \"postgres\"
|
\"dialect\": \"postgres\"
|
||||||
}"
|
}"
|
||||||
|
- name: Deploy NocoBase V2
|
||||||
|
run: |
|
||||||
|
curl --retry 2 --location --request POST "${{secrets.NOCOBASE_DEPLOY_HOST_V2}}${{ steps.get-tag.outputs.tag }}" \
|
||||||
|
--header 'Content-Type: application/json' \
|
||||||
|
-d "{
|
||||||
|
\"tag\": \"${{ steps.get-tag.outputs.tag }}\",
|
||||||
|
\"dialect\": \"postgres\"
|
||||||
|
}"
|
||||||
|
@ -145,3 +145,16 @@ jobs:
|
|||||||
\"tag\": \"$APP_NAME\",
|
\"tag\": \"$APP_NAME\",
|
||||||
\"dialect\": \"postgres\"
|
\"dialect\": \"postgres\"
|
||||||
}"
|
}"
|
||||||
|
- name: Deploy NocoBase V2
|
||||||
|
env:
|
||||||
|
IMAGE_TAG: ${{ steps.get-tag.outputs.tag }}
|
||||||
|
run: |
|
||||||
|
echo $IMAGE_TAG
|
||||||
|
export APP_NAME=$(echo $IMAGE_TAG | cut -d ":" -f 2)-${{ inputs.pro_plugin }}
|
||||||
|
echo $APP_NAME
|
||||||
|
curl --retry 2 --location --request POST "${{secrets.NOCOBASE_DEPLOY_HOST_V2}}$APP_NAME" \
|
||||||
|
--header 'Content-Type: application/json' \
|
||||||
|
-d "{
|
||||||
|
\"tag\": \"$APP_NAME\",
|
||||||
|
\"dialect\": \"postgres\"
|
||||||
|
}"
|
||||||
|
Loading…
Reference in New Issue
Block a user