Skip to content

Commit

Permalink
chore: bump iris to 4.3.2-dev.6
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed May 31, 2024
1 parent 0863299 commit 8296a21
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ on:
description: 'Do not touch or write anything, but show the commands'
default: true
type: boolean
publish-npm:
description: 'publish npm'
default: true
type: boolean

jobs:
release-it:
if: ${{ inputs.publish-npm }}
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Expand Down Expand Up @@ -43,6 +48,17 @@ jobs:
git config --global user.name "${{ secrets.GIT_USERNAME }}"
yarn release ${{ inputs.increment }} --ci --no-git.tag --no-github.release --npm.allowSameVersion
update-example:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}

- name: Setup
uses: ./.github/actions/setup

- name: Get Package Info
if: ${{ !inputs.dry-run }}
id: package-info
Expand All @@ -55,14 +71,16 @@ jobs:
- name: Update Example
if: ${{ !inputs.dry-run }}
run: |
git config --global user.email "${{ secrets.GIT_EMAIL }}"
git config --global user.name "${{ secrets.GIT_USERNAME }}"
yarn example add ${{steps.package-info.outputs.name}}@${{steps.package-info.outputs.version}}
- name: Commit Example
if: ${{ !inputs.dry-run }}
run: |
git add example
git commit -m "chore(example): update example to install ${{steps.package-info.outputs.name}}@${{steps.package-info.outputs.version}}"
- name: Release
if: ${{ !inputs.dry-run }}
run: |
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -136,9 +136,9 @@
"yuv-canvas": "1.2.6"
},
"agora_electron": {
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.3.2-dev.2_DCG_Windows_Video_Standalone_20240523_0539_433.zip",
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.3.2-dev.2_DCG_Mac_Video_Standalone_20240523_0539_397.zip",
"native_sdk_win": "https://download.agora.io/sdk/release/AgoraRtcEngine_windows_Preview_4.3.2-dev.2.zip",
"native_sdk_mac": "https://download.agora.io/sdk/release/AgoraRtcEngine_macOS_Preview_4.3.2-dev.2.zip"
"iris_sdk_win": "https://download.agora.io/sdk/release/iris_4.3.2-dev.6_DCG_Windows_Video_Standalone_20240531_0442_440.zip",
"iris_sdk_mac": "https://download.agora.io/sdk/release/iris_4.3.2-dev.6_DCG_Mac_Video_Standalone_20240531_0442_403.zip",
"native_sdk_win": "https://download.agora.io/sdk/release/AgoraRtcEngine_windows_Preview_4.3.2-dev.6.zip",
"native_sdk_mac": "https://download.agora.io/sdk/release/AgoraRtcEngine_macOS_Preview_4.3.2-dev.6.zip"
}
}

0 comments on commit 8296a21

Please sign in to comment.