-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from ant-media/update-embeded-player-automation
Create update-embedded-player.yml
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Update @antmedia/web_player Dependency | ||
|
||
on: | ||
repository_dispatch: | ||
types: [update-embedded-player] | ||
|
||
jobs: | ||
update-dependency: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Use Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Update @antmedia/web_player | ||
working-directory: ./embedded-player | ||
run: | | ||
OLD_EMBEDDED_PLAYER_VERSION=$(node -p "require('./package.json').dependencies['@antmedia/web_player']") | ||
npm install --save @antmedia/web_player@latest || { echo 'npm install failed' ; exit 1; } | ||
NEW_EMBEDDED_PLAYER_VERSION=$(node -p "require('./package.json').dependencies['@antmedia/web_player']") | ||
echo "OLD_EMBEDDED_PLAYER_VERSION=$OLD_EMBEDDED_PLAYER_VERSION" >> $GITHUB_ENV | ||
echo "NEW_EMBEDDED_PLAYER_VERSION=$NEW_EMBEDDED_PLAYER_VERSION" >> $GITHUB_ENV | ||
- name: Commit changes if version updated | ||
if: env.OLD_EMBEDDED_PLAYER_VERSION != env.NEW_EMBEDDED_PLAYER_VERSION | ||
working-directory: ./embedded-player | ||
run: | | ||
git config user.name github-actions | ||
git config user.email [email protected] | ||
git add package.json package-lock.json | ||
git commit -m "Update @antmedia/web_player from ${{ env.OLD_EMBEDDED_PLAYER_VERSION }} to ${{ env.NEW_EMBEDDED_PLAYER_VERSION }}" | ||
- name: Create Pull Request | ||
if: env.OLD_EMBEDDED_PLAYER_VERSION != env.NEW_EMBEDDED_PLAYER_VERSION | ||
uses: peter-evans/[email protected] | ||
with: | ||
title: "Update @antmedia/web_player to ${{ env.NEW_EMBEDDED_PLAYER_VERSION }}" | ||
body: | | ||
This PR updates the @antmedia/web_player dependency from ${{ env.OLD_EMBEDDED_PLAYER_VERSION }} to ${{ env.NEW_EMBEDDED_PLAYER_VERSION }}. | ||
Triggered by publish-release.yml from web player repo. | ||
branch: update-antmedia-web-player-${{ env.NEW_EMBEDDED_PLAYER_VERSION }} | ||
delete-branch: true |