From 35493e7be4bd66dabd76f182945c9ffe946025e4 Mon Sep 17 00:00:00 2001 From: Oyster Lee Date: Fri, 25 Mar 2022 17:52:36 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20chore:=20trigger=20workflow=20on?= =?UTF-8?q?=20push=20tag?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 5 +++-- package.json | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f7cd7d..a307e16 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,8 +1,9 @@ name: Release on: - release: - types: [published] + push: + tags: + - 'v*' jobs: release: diff --git a/package.json b/package.json index f177223..0edbc19 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@oysterlee/utils", - "version": "0.1.0", + "version": "0.1.1", "description": "Collection of utility functions for common JavaScript/TypeScript task", "main": "./dist/index.umd.js", "module": "./dist/index.es.js", @@ -9,7 +9,6 @@ "dist" ], "scripts": { - "build:doc": "jsdoc2md --files ./src/**/*.ts --configure ./jsdoc2md.json > API.md", "dev": "vite preview", "build": "vite build", "test": "vitest",