Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- 'v[0-9]+.[0-9]+.[0-9]+-*'
jobs:
publish:
runs-on: ubuntu-24.04
Expand All @@ -21,6 +20,8 @@ jobs:
with:
node-version: "20.17.0"
cache: "yarn"
- name: Update npm
run: npm install -g npm@11.6.2
- name: Install node modules
run: yarn install --non-interactive --check-files --frozen-lockfile
- name: Get tag from build environment
Expand All @@ -32,8 +33,6 @@ jobs:
run: npm version --allow-same-version --git-tag-version=false ${{steps.tag.outputs.version}}
- name: Build
run: ./node_modules/.bin/gulp build
- name: Authenticate with npm
run: npm set //registry.npmjs.org/:_authToken ${{secrets.NPM_AUTH_TOKEN}}
- name: Publish to npm
run: npm publish
- name: Create Github release and tag JIRA issues
Expand Down