update workflow to avoid recursive checkout

This commit is contained in:
Colin Griffin 2022-04-26 17:32:02 -04:00
parent 94d5893c4e
commit 6f47b367a0

View file

@ -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.