From e2430ddad6676cf8a33491383e0d9a27a85c8dcc Mon Sep 17 00:00:00 2001 From: bquan0 Date: Wed, 30 Aug 2023 16:40:23 -0500 Subject: [PATCH] add the workflow that will output the release name --- .github/workflows/releaseTest.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/releaseTest.yml diff --git a/.github/workflows/releaseTest.yml b/.github/workflows/releaseTest.yml new file mode 100644 index 0000000..d346716 --- /dev/null +++ b/.github/workflows/releaseTest.yml @@ -0,0 +1,17 @@ +name: release-test + +on: + workflow_dispatch: + pull_request: + push: + release: + +jobs: + echo-variable: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: See what github.ref is on release + run: echo ${{ github.ref }} \ No newline at end of file