From b95c1b2aaedd044bdcd9800bfef9d11cd7fd48aa Mon Sep 17 00:00:00 2001 From: Brian Lindner <8153326+BrianLindner@users.noreply.github.com> Date: Sun, 23 Oct 2022 16:54:06 -0400 Subject: [PATCH] GH Action for releases --- .github/workflows/publish-release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/publish-release.yml diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml new file mode 100644 index 0000000..cd7c84c --- /dev/null +++ b/.github/workflows/publish-release.yml @@ -0,0 +1,15 @@ +# .github/workflows/publish-release.yml +name: Publish release +on: + push: + tags: + - "*" +jobs: + publish: + runs-on: ubuntu-latest + name: Publish release + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Publish release + uses: eloquent/github-release-action@v3 \ No newline at end of file