From a3248c52309db2201ffb9ca4414d71c1182a7ee7 Mon Sep 17 00:00:00 2001 From: Sreesanth46 Date: Mon, 20 Nov 2023 14:23:59 +0530 Subject: [PATCH] chore: release --- .github/workflows/release.yml | 25 +++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..f0aad61 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,25 @@ +name: Release + +permissions: + contents: write + +on: + push: + tags: + - 'v*' + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: actions/setup-node@v3 + with: + node-version: 16.x + + - run: npx changelogithub + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file diff --git a/package.json b/package.json index 07ff75d..302be4c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@harv46/vue-table", "private": false, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "main": "./dist/umd.js", "module": "./dist/es.js",