Merge commit 'b391c7441fc934139bf74d997424627b33ea9779' into dev/0.9

* commit 'b391c7441fc934139bf74d997424627b33ea9779':
  Fix physics lite raycast bug (#999) (#1104)
  fix: resource parser error (#1105)
  v0.8.0-beta.31
  feat: add release action (#1102)
  Fix `Compoment`/`Script` `onDisable` and  `onEnable` bug  (#1087)
  Revert "fix: onDisable() call back scene is null bug (#1098)" (#1101)
  fix: onDisable() call back scene is null bug (#1098)
  Add AnimatorController loader  for AniamtorController Editor (#1078)
  v0.8.0-beta.30
  fix: pointer moving delta bug (#1083)
  v0.8.0-beta.29
  fix: texture load bug in miniprogram (#1077)
  v0.8.0-beta.28
  v0.8.0-beta.27
  Fix Material Resolved with Texture References (#1076)
  Support glTF materials remap (#1034)
  Fix wrong word recieveShadow to receiveShadow (#1065)

# Conflicts:
#	lerna.json
#	packages/core/package.json
#	packages/core/src/shadow/Extension.ts
#	packages/core/src/shadow/ShadowFeature.ts
#	packages/design/package.json
#	packages/draco/package.json
#	packages/loader/package.json
#	packages/loader/src/index.ts
#	packages/loader/src/resource-deserialize/index.ts
#	packages/loader/src/resource-deserialize/resources/animatorController/type.ts
#	packages/math/package.json
#	packages/oasis-engine/package.json
#	packages/physics-lite/package.json
#	packages/physics-physx/package.json
#	packages/rhi-webgl/package.json
#	tests/package.json
This commit is contained in:
GuoLei1990
2022-10-17 17:57:03 +08:00
21 changed files with 269 additions and 125 deletions

34
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,34 @@
# This is a basic workflow to help you get started with Actions
name: Release Note
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
release:
types: [published]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
message:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Dump Github context
env:
GITHUB_CONTEXT: ${{ toJSON(github) }}
run: echo "$GITHUB_CONTEXT"
- name: Send notification to Dingding
if: success()
uses: mrkou47/action-dingding-webhook@main
env:
DINGDING_SECRET_TOKEN_MAP: ${{ secrets.DINGDING_SECRET_TOKEN_MAP }}
with:
title: Release Note ${{ github.event.release.tag_name }}
text: ${{ toJSON(github.event.release.body) }}