fix: add clone step with git credentials

This commit is contained in:
Agent
2026-03-21 14:14:02 +00:00
parent 15a3b7362d
commit ef66e6c173

View File

@@ -10,6 +10,14 @@ trigger:
- dev - dev
steps: steps:
- name: clone
image: alpine/git
settings:
username:
from_secret: git_username
password:
from_secret: git_password
- name: install - name: install
image: node:18-alpine image: node:18-alpine
commands: commands:
@@ -54,6 +62,14 @@ trigger:
- master - master
steps: steps:
- name: clone
image: alpine/git
settings:
username:
from_secret: git_username
password:
from_secret: git_password
- name: install - name: install
image: node:18-alpine image: node:18-alpine
commands: commands: