From dd2c210bfff3a1a0e4e4aa45d47a784231741c4d Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Wed, 27 Nov 2024 10:51:34 +0200 Subject: [PATCH] Add release workflow for a release/2.4.4 tag --- .github/workflows/release_tag.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/release_tag.yml diff --git a/.github/workflows/release_tag.yml b/.github/workflows/release_tag.yml new file mode 100644 index 00000000..9eb7caa3 --- /dev/null +++ b/.github/workflows/release_tag.yml @@ -0,0 +1,25 @@ +name: "Create a new release" + +on: + - workflow_dispatch + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + ref: ${{ inputs.release_tag }} + + - name: Install dependencies + run: | + npm ci + + - name: Lint & Compile + run: | + npm run lint + npm run compile + + - name: Release + uses: softprops/action-gh-release@v2 + if: startsWith(github.ref, 'refs/tags/')