Skip to content

Commit

Permalink
Add release workflow for a release/2.4.4 tag
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneToIgnore committed Nov 27, 2024
1 parent e3cf71a commit dd2c210
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release_tag.yml
Original file line number Diff line number Diff line change
@@ -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/')

0 comments on commit dd2c210

Please sign in to comment.