Skip to content

Commit

Permalink
Create gitaction-demo1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
osgeum authored Jan 31, 2024
0 parents commit 7bc2ade
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/gitaction-demo1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: GitAction Demo1
on: push
jobs:
GitActions-demo-job:
name: Demo Job
runs-on: ubuntu-latest
steps:
- name: Print a environment
env:
MY_VAR: Hi there! My name is
FIRST_NAME: lee
LAST_NAME: lee
AWS_JOB_NAME: kevin.lee
run: |
echo $MY_VAR $FIRST_NAME $LAST_NAME.
echo $MY_VAR $AWS_JOB_NAME.

0 comments on commit 7bc2ade

Please sign in to comment.