Skip to content

Commit

Permalink
fix(CI/CD): Fix GH actions; update git submodules way to update
Browse files Browse the repository at this point in the history
  • Loading branch information
weber8thomas committed Jul 1, 2024
1 parent d585aec commit de226f6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/assemblies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
# lfs: true

- name: Git Submodule Update
run: |
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
# lfs: true

- name: Git Submodule Update
run: |
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
# lfs: true

- name: Git Submodule Update
run: |
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
# lfs: true

- name: Git Submodule Update
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
# Update references
- name: Git Submodule Update
run: |
git pull --recurse-submodules
# git pull --recurse-submodules
git submodule update --remote --recursive --force --init
- name: Setup Python
Expand Down Expand Up @@ -125,8 +125,8 @@ jobs:

- name: Git Submodule Update
run: |
git pull --recurse-submodules
git submodule update --remote --recursive
# git pull --recurse-submodules
git submodule update --remote --recursive --force --init
- name: Setup Python
uses: actions/setup-python@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main_v8.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
# - Formatting
# - Linting
steps:
- name: Checkout repository with submodules and LFS
- name: Checkout repository with submodules
uses: actions/checkout@v4
with:
submodules: recursive
lfs: true
# lfs: true

- name: Git Submodule Update
run: |
Expand Down

0 comments on commit de226f6

Please sign in to comment.