Concourse CI
# secrets.yml
METERIAN_API_TOKEN: your API token# pipeline.yml
resources:
- name: source-code
type: git
source:
uri: your repository uri
branch: the target branch
jobs:
- name: you-job-name
plan:
- get: source-code
trigger: true
- task: meterian-scan
config:
platform: linux
image_resource:
type: registry-image
source:
repository: meterian/cli
inputs:
- name: source-code
path: .
run:
path: /root/concourse.sh
args: [ comma-separated arguments for the client ]
params:
METERIAN_API_TOKEN: ((METERIAN_API_TOKEN))Last updated