From 76759d844ef4c949c09db8cf5e7daee75ff01cf0 Mon Sep 17 00:00:00 2001 From: JChicomeSan <57263663+ChicomeMX7@users.noreply.github.com> Date: Tue, 12 Sep 2023 00:26:31 -0600 Subject: [PATCH] Release.yml --- .github/workflows/Release.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/Release.yml diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml new file mode 100644 index 0000000..72d9f43 --- /dev/null +++ b/.github/workflows/Release.yml @@ -0,0 +1,25 @@ +name: Create Release + +on: + push: + branches: + - 'main' + tags: + - 'v*' + +jobs: + build: + name: Create Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body_path: "./release_notes"