Skip to content

Commit

Permalink
chore: optimize
Browse files Browse the repository at this point in the history
  • Loading branch information
guoxianzhe committed Feb 29, 2024
1 parent 31bc87e commit 8b767fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ jobs:
shell: bash

- name: Update CHANGELOG.md and Create Release
if: ${{ env.release-exists == false }}
if: ${{ !steps.check-if-release-exists.outputs.release-exists }}
run: |
pnpm release ${{ env.version }} --ci --npm.allowSameVersion --github.assets=./packages/rtc/dist/${{ env.RTC_PACKAGE_PATH }} --github.assets=./packages/fake/rtc/dist/${{ env.RTC_FAKE_PACKAGE_PATH }}
- name: Update Release Assets
if: ${{ env.release-exists == true }}
if: ${{ steps.check-if-release-exists.outputs.release-exists }}
run: |
pnpm release ${{ env.version }} --ci --npm.allowSameVersion --github.assets=./packages/rtc/dist/${{ env.RTC_PACKAGE_PATH }} --github.assets=./packages/fake/rtc/dist/${{ env.RTC_FAKE_PACKAGE_PATH }} --no-git --no-increment
Expand Down
13 changes: 0 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,5 @@
# IRIS_WEB

* chore: optimize (61721e5)
* chore: optimize (d84559a)
* chore: optimize (4e50cd4)
* chore: release 0.6.0 (eb0fa55)
* chore: optimize (b77cdb3)
* chore: release 0.6.0 (f649afe)
* chore: optimize (088b7ba)
* chore: optimize (8d85f69)
* chore: release 0.6.0 (e4bd646)
* Merge branch 'dev/ep-500/0.6.0' of https://github.com/AgoraIO-Extensions/iris_web into dev/ep-500/0.6.0 (4896566)
* Merge branch 'dev/ep-500/0.6.0' of https://github.com/AgoraIO-Extensions/iris_web into dev/ep-500/0.6.0 (24c5585)
* chore: optimize (5e4bc50)

## [0.6.0](https://github.com/AgoraIO-Extensions/iris_web/compare/v0.5.0...v0.6.0) (2024-02-29)


Expand Down

0 comments on commit 8b767fc

Please sign in to comment.