Skip to content

Commit f34e380

Browse files
committed
release: update pacakge info and git workflow
1 parent 8a94c14 commit f34e380

4 files changed

Lines changed: 4822 additions & 19 deletions

File tree

.github/workflows/npm-publish.yml

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
2-
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
3-
41
name: Node.js Package
52

63
on:
@@ -12,20 +9,38 @@ jobs:
129
runs-on: ubuntu-latest
1310
steps:
1411
- uses: actions/checkout@v2
15-
- uses: actions/setup-node@v1
12+
- uses: actions/setup-node@v2
1613
with:
17-
node-version: 12
14+
node-version: 14
1815
- run: npm ci
1916
- run: npm test
2017

18+
publish-npm:
19+
needs: build
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v2
23+
- uses: actions/setup-node@v2
24+
with:
25+
node-version: 14
26+
registry-url: https://registry.npmjs.org/
27+
- run: npm ci
28+
- run: npm run prepublishOnly
29+
- run: npm publish
30+
env:
31+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
32+
2133
publish-gpr:
2234
needs: build
2335
runs-on: ubuntu-latest
36+
permissions:
37+
contents: read
38+
packages: write
2439
steps:
2540
- uses: actions/checkout@v2
26-
- uses: actions/setup-node@v1
41+
- uses: actions/setup-node@v2
2742
with:
28-
node-version: 12
43+
node-version: 14
2944
registry-url: https://npm.pkg.github.com/
3045
- run: npm ci
3146
- run: npm run prepublishOnly

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes to Property Use Logical
22

3+
## 3.2.1 (July 26th, 2021)
4+
5+
- Update stylelint peer dependency to use current version or late
6+
37
## 3.2.0 (February 16th, 2021)
48

59
- Added: support for `Logical height`

0 commit comments

Comments
 (0)