22 lines
355 B
YAML
22 lines
355 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: arm
|
||
|
clone:
|
||
|
skip_verify: true
|
||
|
|
||
|
steps:
|
||
|
- name: git
|
||
|
image: plugins/git
|
||
|
commands:
|
||
|
- git config user.name $USERNAME
|
||
|
- git config user.password $PASSWORD
|
||
|
- /bin/ash gather.sh
|
||
|
environment:
|
||
|
PASSWORD:
|
||
|
from_secret: password
|
||
|
USERNAME:
|
||
|
from_secret: username
|