From 861be64e90eda421a6668a688419efe52eb4d817 Mon Sep 17 00:00:00 2001 From: 1bl4z3r <34515568+1bl4z3r@users.noreply.github.com> Date: Sun, 6 Aug 2023 16:56:54 +0530 Subject: [PATCH] Added Scroll to top button --- .github/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 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..3b806e0 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,15 @@ +# Deploy Releases +name: Release +on: + push: + tags: + - "v*" +jobs: + release: + name: Release + runs-on: "ubuntu-latest" + steps: + - uses: "marvinpinto/action-automatic-releases@latest" + with: + repo_token: "${{ secrets.GITHUB_TOKEN }}" + prerelease: false