create-nuxt-base 0.1.4 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -19,3 +19,12 @@ jobs:
|
|
|
19
19
|
with:
|
|
20
20
|
access: public
|
|
21
21
|
token: ${{ secrets.NPM_TOKEN }}
|
|
22
|
+
- name: Deploy notification
|
|
23
|
+
if: always()
|
|
24
|
+
uses: adamkdean/simple-slack-notify@master
|
|
25
|
+
with:
|
|
26
|
+
channel: '#deployments'
|
|
27
|
+
status: ${{ job.status }}
|
|
28
|
+
success_text: 'Version (#${{github.ref_name}}) von create-nuxt-base wurde erfolgreich released.'
|
|
29
|
+
failure_text: 'Release (#${{github.ref_name}}) von create-nuxt-base ist fehlgeschlagen.'
|
|
30
|
+
cancelled_text: 'Release (#${{github.ref_name}}) von create-nuxt-base wurde abgebrochen.'
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
name: Release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
build:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: write
|
|
13
|
+
steps:
|
|
14
|
+
- uses: actions/checkout@v2
|
|
15
|
+
with:
|
|
16
|
+
fetch-depth: 3
|
|
17
|
+
- name: Create release notes
|
|
18
|
+
run: diff --changed-group-format='%>' --unchanged-group-format='' <( git show HEAD~1:CHANGELOG.md ) CHANGELOG.md > RELEASE_NOTES.md || true
|
|
19
|
+
- uses: ncipollo/release-action@v1
|
|
20
|
+
with:
|
|
21
|
+
bodyFile: 'RELEASE_NOTES.md'
|
|
22
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.6](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.5...v0.1.6) (2023-03-31)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Change default host ([b026fed](https://github.com/lenneTech/nuxt-base-starter/commit/b026fed7eaf8c5964bac5cc4a5c37074878a8d30))
|
|
11
|
+
|
|
12
|
+
### [0.1.5](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.4...v0.1.5) (2023-03-31)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* Add release workflow ([fd3720c](https://github.com/lenneTech/nuxt-base-starter/commit/fd3720c62454cd16ca92b8614e9225af2149b547))
|
|
18
|
+
|
|
5
19
|
### [0.1.4](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.3...v0.1.4) (2023-03-31)
|
|
6
20
|
|
|
7
21
|
### [0.1.3](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.2...v0.1.3) (2023-03-31)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nuxt-base",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Starter to generate a configured environment with VueJS, Nuxt, Tailwind, Eslint, @lenne.tech/nuxt-base, Storybook, Unit Tests, Cypress etc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|