From 00b0f676f8c1d7d6a412d3dc84bdfb82f45aee8c Mon Sep 17 00:00:00 2001 From: Richard Fox Date: Fri, 27 Oct 2023 16:43:56 -0700 Subject: [PATCH] chore(ci): test workflow while i figure out what is wrong --- .github/workflows/test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/test.yml 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