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:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
with:
submodules: true
- name: checkout
uses: actions/checkout@v2
- name: Git submodule update
run: |
git submodule update --init
- name: Docker Login
# You may pin to the exact commit or the version.