From 777a4283471f00149fea4454b18e98a0d4f7cce2 Mon Sep 17 00:00:00 2001 From: colinscz <19342760+colinscz@users.noreply.github.com> Date: Wed, 14 Feb 2024 16:35:13 +0100 Subject: [PATCH] fix: release workflow for vue (#211) --- .github/workflows/release.yml | 2 +- docs/changelog.md | 6 ++++++ libraries/ui-library-vue/package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6922d6701..8f6b1b872 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: git config user.name "GitHub action" git config user.email "<>" git checkout -b feature/${{ inputs.version }} - git add package*.json libraries/ui-library/package*.json libraries/ui-library-react/package*.json libraries/ui-library-angular/package*.json + git add package*.json libraries/ui-library/package*.json libraries/ui-library-react/package*.json libraries/ui-library-vue/package*.json libraries/ui-library-angular/package*.json git commit -m "${{ inputs.version }}" git push origin feature/${{ inputs.version }} diff --git a/docs/changelog.md b/docs/changelog.md index 27d9b3fc9..cb5f69ea8 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -12,6 +12,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ### Fixed +## 4.1.2 - 2024-02-14 ♥ + +### Fixed + +- GitHub workflow for Vue + ## 4.1.1 - 2024-02-14 ♥ ### Fixed diff --git a/libraries/ui-library-vue/package.json b/libraries/ui-library-vue/package.json index e4214fb46..d9ea20998 100644 --- a/libraries/ui-library-vue/package.json +++ b/libraries/ui-library-vue/package.json @@ -1,6 +1,6 @@ { "name": "@six-group/ui-library-vue", - "version": "4.1.0", + "version": "4.1.1", "description": "Vue wrapper components for @six-group/ui-library", "main": "dist/index.js", "types": "dist/index.d.ts",