From f5466f004eff6dd0946ac4e19a96ff5b1d7bd730 Mon Sep 17 00:00:00 2001 From: bansikah22 Date: Thu, 12 Sep 2024 08:34:25 +0100 Subject: [PATCH] github actions for release --- .github/workflows/release.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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 00000000..94717fe6 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,22 @@ +name: Publish Release +on: + push: + tags: + - 'v*' +permissions: + packages: write + contents: write +jobs: + build: + runs-on: ubuntu-latest + permissions: + packages: write + contents: write + steps: + - uses: actions/checkout@v3 + - name: Create a Release + uses: elgohr/Github-Release-Action@v5 + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + title: Releases \ No newline at end of file