17 أسطر
262 B
YAML
17 أسطر
262 B
YAML
name: my first workflow on GitPasha
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
my-first-job:
|
|
steps:
|
|
- name: say hello
|
|
run: echo "Hello World"
|
|
|
|
- name: create file
|
|
run: touch jemy.log
|
|
|
|
- name: list files
|
|
run: ls -la |