From 895c7588a1a77c4e1c9cce3936f65b07486d1d89 Mon Sep 17 00:00:00 2001 From: ilan ponimansky <31193909+iloveicedgreentea@users.noreply.github.com> Date: Sun, 22 Mar 2020 14:59:06 -0400 Subject: [PATCH] Create test.yml --- .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..69f3f9b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,18 @@ +on: + push: + tags: + - '*' + +name: Test tags + +jobs: + deploy: + name: Deploy + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + - run: git status; git describe --tags + +