We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f48d36 + adef0e6 commit 9d988e4Copy full SHA for 9d988e4
.github/workflows/deploy.yml
@@ -10,9 +10,13 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- # Clona o repositório.
+ # Clona o repositório com os submódulos inicializados.
14
# Veja https://github.com/actions/checkout
15
- - uses: actions/checkout@v2
+ - name: Checkout repository with submodules
16
+ uses: actions/checkout@v3
17
+ with:
18
+ submodules: true # Inicializa os submódulos
19
+ fetch-depth: 0 # Garante que todo o histórico seja baixado
20
21
# Instala PHP e Composer.
22
# Veja https://github.com/shivammathur/setup-php
0 commit comments