Add build2 job to workflow for environment

variables
هذا الالتزام موجود في:
Chris Ayers
2023-11-09 15:51:56 +00:00
الأصل 310173cf7d
التزام e0ef3cfbe3

عرض الملف

@@ -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"