diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..643d770 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +name: Whatever + +on: + push: + paths-ignore: + - '**/*.md' + branches: + - main + +jobs: + build: + runs-on: windows-2019 + steps: + - name: Get version + run: echo "VERSION=7" >> "$GITHUB_ENV" + - name: Read version + run: | + echo Version now: ${VERSION} \ No newline at end of file