diff options
| author | Syndamia <kamen@syndamia.com> | 2024-01-08 17:59:38 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2024-01-08 17:59:38 +0200 |
| commit | fe29a3630d48d3e1d44287ea41682621d3a3dab0 (patch) | |
| tree | 1628c47d5e948008c40dce1518140025cd7416bc | |
| parent | b32fc727fdbd67e9395cedb0a13f1a2adc03d527 (diff) | |
| download | pico-web-fe29a3630d48d3e1d44287ea41682621d3a3dab0.tar pico-web-fe29a3630d48d3e1d44287ea41682621d3a3dab0.tar.gz pico-web-fe29a3630d48d3e1d44287ea41682621d3a3dab0.zip | |
[.github] Recursive submodule checkout
| -rw-r--r-- | .github/workflows/dev-branch.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/feature-branch.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/main-branch.yml | 2 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/dev-branch.yml b/.github/workflows/dev-branch.yml index a7e81f6..6d66da2 100644 --- a/.github/workflows/dev-branch.yml +++ b/.github/workflows/dev-branch.yml @@ -12,6 +12,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + submodules: recursive - uses: actions/upload-artifact@v3 with: name: source-code diff --git a/.github/workflows/feature-branch.yml b/.github/workflows/feature-branch.yml index 88bee04..3ff1833 100644 --- a/.github/workflows/feature-branch.yml +++ b/.github/workflows/feature-branch.yml @@ -13,6 +13,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + submodules: recursive - uses: actions/upload-artifact@v3 with: name: source-code diff --git a/.github/workflows/main-branch.yml b/.github/workflows/main-branch.yml index dcd4c60..8534344 100644 --- a/.github/workflows/main-branch.yml +++ b/.github/workflows/main-branch.yml @@ -9,6 +9,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + with: + submodules: recursive - uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} |
