github.com/drone/go-convert@v0.0.0-20240307072510-6bd371c65e61/convert/bitbucket/yaml/testdata/clone/example9.yaml.golden (about)

     1  {
     2      "pipelines": {
     3          "default": [
     4              {
     5                  "step": {
     6                      "name": "Clone with lfs on",
     7                      "clone": {
     8                          "lfs": true
     9                      },
    10                      "script": [
    11                          "ls -lh large-file.zip"
    12                      ]
    13                  }
    14              },
    15              {
    16                  "step": {
    17                      "name": "Clone with lfs off",
    18                      "clone": {},
    19                      "script": [
    20                          "apt-get update && apt-get install -y git-lfs",
    21                          "git lfs pull --include=large-file.zip",
    22                          "ls -lh large-file.zip"
    23                      ]
    24                  }
    25              }
    26          ]
    27      }
    28  }