From 64c2671ff145deacdabba0e538c5c4c3bafa561d Mon Sep 17 00:00:00 2001 From: jneilliii Date: Sun, 14 Nov 2021 17:33:18 -0500 Subject: [PATCH] test --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..989125d --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: "test" + +on: + workflow_dispatch + +jobs: + build: + name: "Build" + runs-on: ubuntu-latest + steps: + + - name: "🔖 Test release body" + uses: softprops/action-gh-release@v1 + with: + name: "test" + tag_name: "test" + body: "This\nis\na\ntest\n." + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}