From 636d9f4cf9701111e58871e78d54f3d6463e6891 Mon Sep 17 00:00:00 2001 From: Shein Maxim Date: Thu, 17 Apr 2025 21:09:35 +0500 Subject: [PATCH] Create README.MD --- README.MD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.MD diff --git a/README.MD b/README.MD new file mode 100644 index 0000000..6dd7e3c --- /dev/null +++ b/README.MD @@ -0,0 +1,32 @@ + + + +Examples: +``` +on: [push] + +jobs: + hello_world_job: + runs-on: ubuntu-latest + name: A job to say hello + steps: + - + name: Checkout repo + uses: actions/checkout@v4 + - + name: Get current env + id: foo + uses: actions/git-tag@main + + - + shell: bash + run: | + echo Git build type "$BUILD_TYPE" + echo Git branch name "$BUILD_BRANCH_NAME" + echo Git tag Description "$BUILD_TAG_DESC" + + env: + BUILD_TYPE: ${{ steps.foo.outputs.git_build_type }} + BUILD_BRANCH_NAME : ${{ steps.foo.outputs.git_branch_name }} + BUILD_TAG_DESC: ${{ steps.foo.outputs.git_tag_desc }} +``` \ No newline at end of file