Update
All checks were successful
My First Action / second-job (push) Successful in 5s

This commit is contained in:
2025-11-25 08:57:35 +03:00
parent 9fbacc3cd4
commit 250d85492e
3 changed files with 24 additions and 24 deletions

View File

@@ -0,0 +1,24 @@
name: "My First Action"
on:
push:
jobs:
second-job:
runs-on: docker
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,19 +0,0 @@
name: "My First Action"
on:
push:
jobs:
second-job:
runs-on: docker
steps:
- name: Install task utility
run: |
curl -1sLf 'https://dl.cloudsmith.io/public/task/task/setup.deb.sh' | bash
apt update
apt install task
- uses: actions/checkout@v6
- name: Run task hello
run: task hello

View File

@@ -1,5 +0,0 @@
version: "3"
tasks:
hello:
cmd: echo "Hello!!!"