diff options
| author | KunoiSayami <[email protected]> | 2021-11-25 09:10:52 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2021-11-25 09:10:52 +0800 |
| commit | 52fb1c30d4cb2e8947209145bdde6a0d00a0b042 (patch) | |
| tree | 6097f9143cea7ebc83a2976d69e00274533285fc /.github/workflows | |
| parent | f314b5f3f88cc53e25fa53b978945228c1a5daae (diff) | |
fix(ci): Fix git submodule not initialized
Signed-off-by: KunoiSayami <[email protected]>
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/check-aur-update.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/check-aur-update.yml b/.github/workflows/check-aur-update.yml index 92270fa..9d22f64 100644 --- a/.github/workflows/check-aur-update.yml +++ b/.github/workflows/check-aur-update.yml @@ -15,9 +15,10 @@ jobs: - uses: actions/checkout@v2 - name: Set up Python 3.10 uses: actions/setup-python@v2 - - name: Install requirements + - name: Install requirements and initialize submodules shell: bash run: | + git submodule update --init python3 -m pip install -U -r utils/aur/requirements.txt - name: Check updates shell: bash |
