update workflow to avoid recursive checkout
This commit is contained in:
parent
94d5893c4e
commit
6f47b367a0
1 changed files with 6 additions and 3 deletions
|
@ -33,9 +33,12 @@ jobs:
|
||||||
# Steps represent a sequence of tasks that will be executed as part of the job
|
# Steps represent a sequence of tasks that will be executed as part of the job
|
||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v2
|
- name: checkout
|
||||||
with:
|
uses: actions/checkout@v2
|
||||||
submodules: true
|
|
||||||
|
- name: Git submodule update
|
||||||
|
run: |
|
||||||
|
git submodule update --init
|
||||||
|
|
||||||
- name: Docker Login
|
- name: Docker Login
|
||||||
# You may pin to the exact commit or the version.
|
# You may pin to the exact commit or the version.
|
||||||
|
|
Loading…
Reference in a new issue