We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd85007 commit d3f7f85Copy full SHA for d3f7f85
1 file changed
actions/setup-flutter/action.yml
@@ -45,8 +45,9 @@ runs:
45
shell: bash
46
run: |
47
cd ${{ runner.temp }}
48
- branch="${ inputs.aop-repo-branch#refs/heads/ }"
49
- git clone ${{ inputs.aop-repo }} -b "$branch"
+ branch="${{ inputs.aop-repo-branch }}"
+ branch="${branch#refs/heads/}"
50
+ git clone "${{ inputs.aop-repo }}" -b "$branch"
51
git clone https://github.com/TDesignOteam/tdesign-flutter-generator.git
52
53
- name: Move aop_tools to ${{ inputs.aop-project-path }}
0 commit comments