Skip to content

Commit

Permalink
ci: support update dependencies (#722)
Browse files Browse the repository at this point in the history
  • Loading branch information
LichKing-2234 authored Nov 8, 2023
1 parent ddb2f31 commit bf6feec
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/dep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Update dependencies

on:
workflow_dispatch:
inputs:
dependencies-content:
description: The content of dependencies
required: true
type: string

jobs:
generate-codes:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

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

- name: Update dependencies
uses: AgoraIO-Extensions/actions/.github/actions/dep@main
with:
dependencies-content: ${{ inputs.dependencies-content }}
github-token: ${{ secrets.GH_TOKEN }}
target-path: |
android/build.gradle
example/ios/Podfile
react-native-agora.podspec

0 comments on commit bf6feec

Please sign in to comment.