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

     1  {
     2      "pipelines": {
     3          "default": [
     4              {
     5                  "step": {
     6                      "name": "Build",
     7                      "script": [
     8                          "npm run build"
     9                      ],
    10                      "artifacts": [
    11                          "dist/**"
    12                      ]
    13                  }
    14              },
    15              {
    16                  "step": {
    17                      "name": "Deploy",
    18                      "trigger": "manual",
    19                      "script": [
    20                          "./deploy.sh"
    21                      ]
    22                  }
    23              }
    24          ]
    25      }
    26  }