Skip to content

Commit

Permalink
fetch submodules in GitHub runner
Browse files Browse the repository at this point in the history
  • Loading branch information
lhoward committed Nov 24, 2024
1 parent 512d969 commit fae53a7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
@@ -39,8 +39,11 @@ jobs:
uses: actions/checkout@v4
- name: Fix permissions
run: chown -R $(id -u):$(id -g) $PWD
- name: Fetch tags
run: git fetch --prune --unshallow --tags
- name: Fetch tags and checkout submodules
run: |
git fetch --prune --unshallow --tags
git submodule init
git submodule update
- name: Checkout Flutter
run: |
FLUTTER_REVISION=`git describe --tags --abbrev=0`

0 comments on commit fae53a7

Please sign in to comment.