diff --git a/.github/workflows/04-environment-variables2.yaml b/.github/workflows/04-environment-variables2.yaml index 81646fb..8c1cab1 100644 --- a/.github/workflows/04-environment-variables2.yaml +++ b/.github/workflows/04-environment-variables2.yaml @@ -37,3 +37,16 @@ jobs: env: Name: 'World' Location: 'Step' + build2: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v4.1.1 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo "$Greeting, $Name! from $Location" + \ No newline at end of file