From 3f77e75c187b8426dfbdb78954e943c1710622b3 Mon Sep 17 00:00:00 2001 From: Joseph Flinn Date: Tue, 26 Jan 2021 22:21:24 +0000 Subject: [PATCH] trying out the github.ref --- .github/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000000..0bb21be4f4 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Deploy + +on: + release: + types: + - prereleased + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout Repo + uses: actions/checkout@v2 + + - name: testing + run: echo ${{ github.ref }} +