remove git fetch (#753)

This commit is contained in:
Robert Kaussow 2023-12-24 00:27:24 +01:00 committed by GitHub
parent 8322ac05dd
commit f7639c07e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 5 deletions

View File

@ -9,7 +9,6 @@ steps:
- name: assets
image: docker.io/library/node:lts
commands:
- git fetch --depth=2147483647
- npm install --quiet --no-progress
- npm run build
- cat VERSION
@ -31,7 +30,6 @@ steps:
- name: changelog
image: quay.io/thegeeklab/git-sv
commands:
- git fetch --depth=2147483647
- git sv current-version
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
- cat CHANGELOG.md

View File

@ -46,9 +46,6 @@ steps:
- name: build
image: quay.io/thegeeklab/hugo:0.115.2
commands:
# Fetch is used to get the full git history.
# Required for Hugos git metadata integration.
- git fetch --depth=2147483647
- hugo --panicOnWarning -s exampleSite/
- name: beautify