6 Commits

Author SHA1 Message Date
b231032a6e Upate readme.md
All checks were successful
Example action / second-job (push) Successful in 5s
2025-11-25 09:04:57 +03:00
10dae7e9ca Update example action
All checks were successful
Example action / second-job (push) Successful in 5s
2025-11-25 09:00:29 +03:00
250d85492e Update
All checks were successful
My First Action / second-job (push) Successful in 5s
2025-11-25 08:57:35 +03:00
9fbacc3cd4 Update
All checks were successful
My First Action / second-job (push) Successful in 18s
2025-11-24 16:16:24 +03:00
bef7ffda19 Update
Some checks failed
My First Action / second-job (push) Failing after 14s
2025-11-24 16:15:49 +03:00
d42a17e98e Add taskfile
Some checks failed
My First Action / second-job (push) Failing after 18s
2025-11-24 16:14:10 +03:00
3 changed files with 27 additions and 10 deletions

View File

@@ -0,0 +1,25 @@
name: "Example action"
run-name: "Start example action"
on:
push:
jobs:
second-job:
runs-on: docker # docker, sirius или golang
steps:
# Клонируем репозиторий для Runnera
- name: Checkout rpository
uses: actions/checkout@v6
# Выводим текстовое сообщение
- name: Echo test
run: echo "Hello!"
# Выводим переменные окружения
- name: Show environment
run: env
# Выводим контекст Gitea в формате JSON
- name: Show Gitea context
run: echo "${{ toJson(gitea) }}"

View File

@@ -1,10 +0,0 @@
name: "My First Action"
on:
push:
jobs:
second-job:
runs-on: docker
steps:
- run: env

View File

@@ -1,2 +1,4 @@
# actions-laba-1