diff --git a/.github/workflows/first.yaml b/.github/workflows/first.yaml new file mode 100644 index 0000000..ad4a507 --- /dev/null +++ b/.github/workflows/first.yaml @@ -0,0 +1,16 @@ +name: Greeting from Mona +on: push + +jobs: + my-job: + name: My Job + runs-on: ubuntu-latest + steps: + - name: Print a greeting + env: + MY_VAR: Hi there! My name is + FIRST_NAME: Mona + MIDDLE_NAME: The + LAST_NAME: Octocat + run: | + echo $MY_VAR $FIRST_NAME $MIDDLE_NAME $LAST_NAME. \ No newline at end of file diff --git a/index.html b/index.html index c3d5669..760e12b 100644 --- a/index.html +++ b/index.html @@ -8,7 +8,7 @@ First Page -

1.0.1

+

1.0.2