Create main.yml

This commit is contained in:
Koen Eijkemans 2020-07-04 15:43:12 +02:00 committed by GitHub
parent 0475e27235
commit 1dec00f6a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

14
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,14 @@
name: Get branch version
on: [push]
jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Gets the version of the branch
steps:
- name: Get version
id: getversion
uses: diligencia/sementantic-git-version-action
- name: Echo name
run: echo "The name of the branch is ${{ steps.hello.outputs.branchname }}"