Skip to content

Commit

Permalink
Corrige #56: Inicializa submódulos do git durante o processo de build
Browse files Browse the repository at this point in the history
  • Loading branch information
Cristianpl4y committed Sep 14, 2024
1 parent acf3016 commit adef0e6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ jobs:
runs-on: ubuntu-latest

steps:
# Clona o repositório.
# Clona o repositório com os submódulos inicializados.
# Veja https://github.com/actions/checkout
- uses: actions/checkout@v2
- name: Checkout repository with submodules
uses: actions/checkout@v3
with:
submodules: true # Inicializa os submódulos
fetch-depth: 0 # Garante que todo o histórico seja baixado

# Instala PHP e Composer.
# Veja https://github.com/shivammathur/setup-php
Expand Down

0 comments on commit adef0e6

Please sign in to comment.