We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We're currently using this to pull down tags and LFS.
def pull_git_tag_and_lfs(pull_tags_from_branch): return { "name": "git-lfs", "image": "hub.docker.target.com/gitlab/gitlab-runner:latest", "commands": [ "git lfs pull", "git fetch --no-tags origin %s" % pull_tags_from_branch ] }
The git plugin can pull tags but it still can't pull LFS.
Adding LFS would enable us to use the git plugin and not need to resort to external images.
Add lfs: true and it just works.
lfs: true
steps: - name: clone_hello-world image: vela-plugins/git:v0.6.0 pull: always parameters: path: hello-world ref: refs/heads/master remote: https://git.example.com/octocat/hello-world.git sha: 7fd1a60b01f91b314f59955a4e4d4e80d8edf11d tags: true lfs: true
The text was updated successfully, but these errors were encountered:
denfinitely doable and the size increase is less than what it was adding github-cli (go-vela/vela-git#157) which added over 50MB?!
github-cli
Sorry, something went wrong.
GH CLI has a ton of deps baked in IIRC.
ah, i thought it was "just a Go binary" ™️ 😮 i guess it is but with lots of dependencies like you said.
Successfully merging a pull request may close this issue.
Description
We're currently using this to pull down tags and LFS.
The git plugin can pull tags but it still can't pull LFS.
Value
Adding LFS would enable us to use the git plugin and not need to resort to external images.
Definition of Done
Add
lfs: true
and it just works.The text was updated successfully, but these errors were encountered: