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