diff --git a/.github/workflows/learn-github-actions.yml b/.github/workflows/learn-github-actions.yml index 7b921ed..edc01ce 100644 --- a/.github/workflows/learn-github-actions.yml +++ b/.github/workflows/learn-github-actions.yml @@ -4,5 +4,15 @@ on: [push] jobs: check-bats-version: runs-on: SB-MA-JBMVBY3 + first_demo_job: + name: The first demo job steps: - - run: GitHub_Batch.bat + - name: Show the demo running + env: + VAR1: This is + VAR2: A Demo of + VAR3: GitHub Actions + VAR4: Workflow jobs + run: | + echo $VAR1 $VAR2 $VAR3 $VAR4. +