From 661855a60fb1bc9da8c84bee57177cf3a4a96d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B9=D0=B4=D0=B8=D0=BB=D1=8C=D0=B4=D0=B8=D0=BD=20?= =?UTF-8?q?=D0=9D=D1=83=D1=80=D0=B1=D0=BE=D0=BB=D0=B0=D1=82?= Date: Sun, 22 Feb 2026 14:38:17 +0100 Subject: [PATCH 1/3] new echo hw --- .github/workflows/03-core-features--01-hello-world.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/03-core-features--01-hello-world.yaml b/.github/workflows/03-core-features--01-hello-world.yaml index b358d3af..6581c712 100644 --- a/.github/workflows/03-core-features--01-hello-world.yaml +++ b/.github/workflows/03-core-features--01-hello-world.yaml @@ -7,4 +7,4 @@ jobs: say-hello-inline-bash: runs-on: ubuntu-24.04 steps: - - run: echo "Hello from an inline bash script in a GitHub Action Workflow!" + - run: echo "TVOYA MAT SHLUCHA" From 40c74adfd758b7a5f58e4e94401fbd55248557b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B9=D0=B4=D0=B8=D0=BB=D1=8C=D0=B4=D0=B8=D0=BD=20?= =?UTF-8?q?=D0=9D=D1=83=D1=80=D0=B1=D0=BE=D0=BB=D0=B0=D1=82?= Date: Sun, 22 Feb 2026 17:27:24 +0100 Subject: [PATCH 2/3] new echo push v --- .../workflows/03-core-features--01-hello-world.yaml | 2 +- .../workflows/03-core-features--06-passing-data.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/03-core-features--01-hello-world.yaml b/.github/workflows/03-core-features--01-hello-world.yaml index 6581c712..b358d3af 100644 --- a/.github/workflows/03-core-features--01-hello-world.yaml +++ b/.github/workflows/03-core-features--01-hello-world.yaml @@ -7,4 +7,4 @@ jobs: say-hello-inline-bash: runs-on: ubuntu-24.04 steps: - - run: echo "TVOYA MAT SHLUCHA" + - run: echo "Hello from an inline bash script in a GitHub Action Workflow!" diff --git a/.github/workflows/03-core-features--06-passing-data.yaml b/.github/workflows/03-core-features--06-passing-data.yaml index a0f4907f..1a99338e 100644 --- a/.github/workflows/03-core-features--06-passing-data.yaml +++ b/.github/workflows/03-core-features--06-passing-data.yaml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-24.04 outputs: - foo: ${{ steps.generate-foo.outputs.foo }} + foo: ${{ steps.gandon.outputs.foo }} steps: - name: Generate and export foo - id: generate-foo + id: gandon run: | foo=bar @@ -18,12 +18,12 @@ jobs: echo "foo=${foo}" >> "$GITHUB_OUTPUT" # 2) Job-scoped environment variable - echo "FOO=${foo}" >> "$GITHUB_ENV" + echo "zalupa=${foo}" >> "$GITHUB_ENV" - name: Inspect values inside producer run: | - echo "FOO (set via GITHUB_ENV): $FOO" - echo "foo (step output): ${{ steps.generate-foo.outputs.foo }}" + echo "zalupa (set via GITHUB_ENV): $zalupa" + echo "foo (step output): ${{ steps.gandon.outputs.foo }}" consumer: runs-on: ubuntu-24.04 From 883e3acba67fcfdeb37aa3ee8a2e480731cd184d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=B9=D0=B4=D0=B8=D0=BB=D1=8C=D0=B4=D0=B8=D0=BD=20?= =?UTF-8?q?=D0=9D=D1=83=D1=80=D0=B1=D0=BE=D0=BB=D0=B0=D1=82?= Date: Sun, 22 Feb 2026 17:40:38 +0100 Subject: [PATCH 3/3] practica --- ...ore-features--06-passing-dataPractise.yaml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/03-core-features--06-passing-dataPractise.yaml diff --git a/.github/workflows/03-core-features--06-passing-dataPractise.yaml b/.github/workflows/03-core-features--06-passing-dataPractise.yaml new file mode 100644 index 00000000..9e4cd016 --- /dev/null +++ b/.github/workflows/03-core-features--06-passing-dataPractise.yaml @@ -0,0 +1,26 @@ +name: Pededaju dannie +on: + workflow_dispatch: + +jobs: + anton: + runs-on: ubuntu-24.04 + + outputs: + peremennaia: ${{ steps.mojId.outputs.peremennaia }} + + steps: + - name: Sozdanie i peredacha peremennoj + id: mojId + run: | + peremennaia=pizdaVolosataja + echo "peremennaia=$peremennaia" >> "$GITHUB_OUTPUT" + + gandon: + runs-on: ubuntu-24.04 + needs: anton + + steps: + - name: take value + run: | + echo "Value from anton: ${{ needs.anton.outputs.peremennaia }}" \ No newline at end of file