Skip to content

Commit da164aa

Browse files
authored
print git status in build-deploy workflow
1 parent fc9b9d2 commit da164aa

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,10 @@ jobs:
6565
submodules: true
6666

6767
- name: Submodule recursive
68-
run: git submodule update --init --recursive
69-
68+
run: |
69+
git submodule update --init --recursive
70+
git status
71+
7072
# Setup the build machine with the most recent versions of CMake and Ninja. Both are cached if not already: on subsequent runs both will be quickly restored from GitHub cache service.
7173
- uses: lukka/get-cmake@latest
7274
# Restore both vcpkg and its artifacts from the GitHub cache service.

0 commit comments

Comments
 (0)