Skip to content

Commit

Permalink
Update and rename first.yml to environment-variables.yml
Browse files Browse the repository at this point in the history
adding exercise files
  • Loading branch information
TomPughe authored Jun 18, 2024
1 parent f391ed7 commit 6d9dabd
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 21 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/environment-variables.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Environment Variables
env:
WORKSPACE_ENVIRONMENT_VARIABLE: 'custom workspace environment variable'
on: [push]
jobs:
ubuntu:
env:
JOB_ENVIRONMENT_VARIABLE: 'custom job environment variable for ubuntu'
runs-on: ubuntu-latest
steps:
- name: Print custom environment variables from ubuntu-latest
env:
STEP_ENVIRONMENT_VARIABLE: 'custom step environment variable for bash'
run: |
echo "Accessing environment variables in run command"
echo "$WORKSPACE_ENVIRONMENT_VARIABLE"
echo "$JOB_ENVIRONMENT_VARIABLE"
echo "$STEP_ENVIRONMENT_VARIABLE"
echo "------------------------------------------------------"
echo "Accessing environment variables using env context"
echo "${{ env.WORKSPACE_ENVIRONMENT_VARIABLE }}"
echo "${{ env.JOB_ENVIRONMENT_VARIABLE }}"
echo "${{ env.STEP_ENVIRONMENT_VARIABLE }} Not defined"
windows:
env:
JOB_ENVIRONMENT_VARIABLE: 'custom job environment variable for windows'
runs-on: windows-latest
steps:
- name: Print custom environment variables from windows-latest
env:
STEP_ENVIRONMENT_VARIABLE: 'custom step environment variable for powershell'
run: |
echo "Accessing environment variables in run command"
echo "$Env:WORKSPACE_ENVIRONMENT_VARIABLE"
echo "$Env:JOB_ENVIRONMENT_VARIABLE"
echo "$Env:STEP_ENVIRONMENT_VARIABLE"
echo "------------------------------------------------------"
echo "Accessing environment variables using env context"
echo "${{ env.WORKSPACE_ENVIRONMENT_VARIABLE }}"
echo "${{ env.JOB_ENVIRONMENT_VARIABLE }}"
echo "${{ env.STEP_ENVIRONMENT_VARIABLE }} Not defined"
21 changes: 0 additions & 21 deletions .github/workflows/first.yml

This file was deleted.

0 comments on commit 6d9dabd

Please sign in to comment.