From e0ef3cfbe384fdf6c87bb86256623f45afc4a95e Mon Sep 17 00:00:00 2001 From: Chris Ayers Date: Thu, 9 Nov 2023 15:51:56 +0000 Subject: [PATCH] Add build2 job to workflow for environment variables --- .github/workflows/04-environment-variables2.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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