From b4727335f547501aa7bee60da82137e1b062ed38 Mon Sep 17 00:00:00 2001 From: Fran Date: Wed, 6 Nov 2024 16:59:21 -0500 Subject: [PATCH] Add release action --- .github/workflows/publish_release.yml | 13 +++++++++++++ 1 file changed, 13 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..5910c3b --- /dev/null +++ b/.github/workflows/publish_release.yml @@ -0,0 +1,13 @@ +name: Publish release + +on: push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Release + uses: softprops/action-gh-release@v2 +