Skip to content

Commit

Permalink
Added missing repository checkout (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed May 15, 2024
1 parent 88225ba commit 7c06cbd
Showing 1 changed file with 30 additions and 4 deletions.
34 changes: 30 additions & 4 deletions .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,6 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Export environment variables
run: set
shell: cmd

# Runs a set of commands using the runners shell
# Support longpaths
- name: Support long paths
Expand Down Expand Up @@ -155,6 +151,16 @@ jobs:
runs-on: windows-latest
steps:

# Runs a set of commands using the runners shell
# Support longpaths
- name: Support long paths
run: git config --system core.longpaths true

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
fetch-depth: '1'

- name: Restore JCOReflector bin from cache
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -239,6 +245,16 @@ jobs:
runs-on: windows-latest
steps:

# Runs a set of commands using the runners shell
# Support longpaths
- name: Support long paths
run: git config --system core.longpaths true

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
fetch-depth: '1'

- name: Restore JCOReflector bin from cache
uses: actions/cache/restore@v4
with:
Expand Down Expand Up @@ -330,6 +346,16 @@ jobs:
runs-on: windows-latest
steps:

# Runs a set of commands using the runners shell
# Support longpaths
- name: Support long paths
run: git config --system core.longpaths true

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v4
with:
fetch-depth: '1'

- name: Restore JCOReflector bin from cache
uses: actions/cache/restore@v4
with:
Expand Down

0 comments on commit 7c06cbd

Please sign in to comment.