diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a123acdfab56..6667b23cf4c4 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,7 +21,10 @@ jobs: runs-on: macos-latest steps: - - uses: actions/checkout@v2 + - name: Checkout repository + uses: actions/checkout@v4 + with: + submodules: recursive - name: Set up ruby env uses: ruby/setup-ruby@v1 @@ -32,7 +35,7 @@ jobs: - name: Use fastlane lane to create and push tagged release id: create_git_tag run: | - bundle exec fastlane tag_and_release_version app_version=${{ github.event.inputs.app-version }} + bundle exec fastlane android tag_and_release_version app_version=${{ github.event.inputs.app-version }} - name: Create Asana task when workflow failed if: ${{ failure() }}