Skip to content

Commit d5f6430

Browse files
Merge branch 'release/1.1.6'
2 parents 0267475 + be8d1b5 commit d5f6430

File tree

6 files changed

+1346
-1218
lines changed

6 files changed

+1346
-1218
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
uses: actions/checkout@v2
2929
- name: Parse changelog
3030
run: |
31-
START="## ${GITHUB_REF#refs/tags/}"
32-
END="##\$"
31+
START="## ${{ GITHUB_REF#refs/tags/ }}"
32+
END="##"
3333
grep -oPz "(?s)${START}.*?\n\K.*?(?=${END})" CHANGELOG.md > changelog.txt
3434
truncate -s-2 changelog.txt
3535
- name: Release

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: git flow init -d
3232
- name: Start release
3333
run: git flow release start ${{ github.event.inputs.new_version }}
34-
- name: Replace [Next] tags with new version number
34+
- name: Replace 1.1.6 tags with new version number
3535
uses: jacobtomlinson/gha-find-replace@master
3636
with:
3737
find: "(?i)\\[Next\\]"

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
- name: Setup Node
1212
uses: actions/setup-node@v1
1313
with:
14-
node-version: 13
14+
node-version: 14
15+
- name: Install dependencies
16+
run: npm install
1517
- name: ESlint
16-
run: |
17-
yarn install
18-
yarn lint
18+
run: npm run lint

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4+
## 1.1.6
5+
6+
* [Changed] Updated NPM dependencies
7+
48
## 1.1.5
59

610
* [Changed] Updated NPM dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@micropackage/scripts",
33
"description": "Reusable scripts for (not only) WordPress development.",
4-
"version": "1.1.5",
4+
"version": "1.1.6",
55
"author": "Wojtek Szałkiewicz <wojtek@szalkiewicz.pl>",
66
"license": "GPL-3.0-or-later",
77
"homepage": "https://github.com/micropackage/scripts",

0 commit comments

Comments
 (0)