Skip to content

Commit

Permalink
ci: fix the commit history from About Page
Browse files Browse the repository at this point in the history
This commit disables shallow fetch inside the CI workflows.

Signed-off-by: Bindea Cristian <[email protected]>
  • Loading branch information
bindea-cristian committed Feb 13, 2025
1 parent a3a7c43 commit 80ce245
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/appimage-arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/checkout@v4
with:
set-safe-directory: 'true'
fetch-depth: '0'

- name: Pull the Docker Image
run: docker pull cristianbindea/scopy2-arm64-appimage:latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/appimage-armhf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/checkout@v4
with:
set-safe-directory: 'true'
fetch-depth: '0'

- name: Pull the Docker Image
run: docker pull cristianbindea/scopy2-armhf-appimage:latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/appimage-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- uses: actions/checkout@v4
with:
set-safe-directory: 'true'
fetch-depth: '0'

- name: Create Scopy AppImage
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/linuxflatpakbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Pull the Docker Image
run: docker pull cristianbindea/scopy2-flatpak:latest

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/mingwbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'

- name: Pull the Docker Image
run: docker pull cristianbindea/scopy2-mingw64:latest

Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ stages:
vmImage: $[ variables['vmImage'] ]
steps:
- checkout: self
fetchDepth: 1
fetchDepth: 0
clean: true
- script: ./ci/macOS/install_macos_deps.sh
displayName: 'Build and Install Dependencies'
Expand Down

0 comments on commit 80ce245

Please sign in to comment.