commit af5b66120afee64910a3f979b3133d50b62c3fd5 parent cb930415f2798c4fe43d23e83be64d227e3c46cd Author: finwo <finwo@pm.me> Date: Sun, 19 Feb 2023 21:19:21 +0100 Workflow init test Diffstat:
| M | .github/workflows/update-v1.0.yml | | | 17 | +++++++++++++++++ |
1 file changed, 17 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/update-v1.0.yml b/.github/workflows/update-v1.0.yml @@ -1 +1,18 @@ +on: + push: + branches: + - main +jobs: + release-v1_0: + name: (Update) release v1.0 + 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.