Skip to content

Commit

Permalink
fix(ci): repair new-tag script
Browse files Browse the repository at this point in the history
  • Loading branch information
elzinko committed Nov 2, 2023
1 parent 17f0844 commit 73a0b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elementor-media-validator-plugin",
"version": "0.4.0",
"version": "0.4.1",
"description": "Elementor media validator plugin",
"author": "Thomas Couderc",
"license": "See license in LICENSE",
Expand All @@ -19,7 +19,7 @@
},
"scripts": {
"changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"new-tag": "cat package.json | jq -r '.version' | xargs git tag -a v",
"new-tag": "cat package.json | jq -r '.version' | xargs git tag '{}' && git push origin --tags",
"tag": "git describe --tags --always",
"prebundle": "mkdir -p dist",
"bundle": "npm run tag | tail -n 1 | xargs -I {} npx dir-archiver --src . --dest ./dist/$npm_package_name-{}.zip --exclude .DS_Store .git .gitattributes .github .gitignore README.md composer.lock node_modules vendor package-lock.json .github devel samples dist",
Expand Down

0 comments on commit 73a0b4c

Please sign in to comment.