27 lines
462 B
YAML
27 lines
462 B
YAML
kind: pipeline
|
|
name: default
|
|
type: docker
|
|
|
|
steps:
|
|
# - name: composer
|
|
# pull: if-not-exists
|
|
# image: composer
|
|
# commands:
|
|
# - composer install --prefer-dist
|
|
#
|
|
#
|
|
# - name: test
|
|
# image: lorisleiva/laravel-docker
|
|
# commands:
|
|
# - ./vendor/bin/phpunit
|
|
|
|
- name: github
|
|
image: alpine/git
|
|
environment:
|
|
SSH_KEY:
|
|
from_secret: id_rsa
|
|
SSH_KEY_PUB:
|
|
from_secret: ssh_key_pub
|
|
commands:
|
|
- echo $SSH_KEY
|