Skip to content

Commit

Permalink
fix github action checkout step
Browse files Browse the repository at this point in the history
  • Loading branch information
Blind-Striker committed Feb 1, 2023
1 parent b51bc7a commit 44f0dd2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
runs-on: macos-10.15

steps:
- name: Checkout
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive

- name: Init
run: chmod +x ./build.sh
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Checkout
- name: Checkout repository and submodules
uses: actions/checkout@v2

with:
submodules: recursive

- name: Init
run: chmod +x ./build.sh

Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ jobs:
runs-on: windows-2019

steps:
- name: Checkout
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive

- name: Install .NET 3.1
uses: actions/setup-dotnet@v1
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,10 @@ jobs:
runs-on: ubuntu-20.04

steps:
- name: Checkout
- name: Checkout repository and submodules
uses: actions/checkout@v2
with:
submodules: recursive

- name: Init
run: chmod +x ./build.sh
Expand Down

0 comments on commit 44f0dd2

Please sign in to comment.