Skip to content

Commit 7c23a9b

Browse files
authored
Add checkout step in build workflow
Add checkout step to fetch repository submodules and full history.
1 parent 5b6d871 commit 7c23a9b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,9 @@ jobs:
4343
push: true
4444
tags: ${{ steps.meta.outputs.tags }}
4545
labels: ${{ steps.meta.outputs.labels }}
46+
47+
- name: Checkout repository
48+
uses: actions/checkout@v4
49+
with:
50+
submodules: recursive # Baixa as dependências do Paper/Spigot
51+
fetch-depth: 0 # Baixa todo o histórico (necessário para os patches)

0 commit comments

Comments
 (0)