@lowentry/react-redux 1.1.6 → 1.1.10
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
name: on push to
|
|
1
|
+
name: on push to master
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
@@ -9,7 +9,7 @@ concurrency:
|
|
|
9
9
|
|
|
10
10
|
jobs:
|
|
11
11
|
deploy:
|
|
12
|
-
name: "Increase version
|
|
12
|
+
name: "Increase version and deploy"
|
|
13
13
|
runs-on: ubuntu-latest
|
|
14
14
|
permissions:
|
|
15
15
|
contents: write
|
|
@@ -18,10 +18,13 @@ jobs:
|
|
|
18
18
|
- uses: actions/setup-node@v4
|
|
19
19
|
with:
|
|
20
20
|
node-version: 'lts/*'
|
|
21
|
-
|
|
21
|
+
registry-url: 'https://registry.npmjs.org'
|
|
22
|
+
# - run: npm ci
|
|
22
23
|
- run: npm test
|
|
24
|
+
- run: git config --global user.name "github-actions[bot]"
|
|
25
|
+
- run: git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
23
26
|
- run: npm version patch -m "Upgrade to %s [skip ci]"
|
|
24
|
-
- run: git push && git push --tags
|
|
25
27
|
- run: npm publish --access public
|
|
26
28
|
env:
|
|
27
29
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
30
|
+
- run: git push && git push --tags
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lowentry/react-redux",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Provides utilities for React and Redux.",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"homepage": "https://github.com/patrickvane/lowentry-react-redux",
|
|
20
20
|
"repository": {
|
|
21
21
|
"type": "git",
|
|
22
|
-
"url": "https://github.com/patrickvane/lowentry-react-redux.git"
|
|
22
|
+
"url": "git+https://github.com/patrickvane/lowentry-react-redux.git"
|
|
23
23
|
},
|
|
24
24
|
"scripts": {
|
|
25
25
|
"test": "node --check index.js"
|
package/bitbucket-pipelines.yml
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
image: node:lts
|
|
2
|
-
|
|
3
|
-
pipelines:
|
|
4
|
-
branches:
|
|
5
|
-
master:
|
|
6
|
-
- step:
|
|
7
|
-
name: Build and Test
|
|
8
|
-
script:
|
|
9
|
-
- npm install
|
|
10
|
-
- npm test
|
|
11
|
-
- step:
|
|
12
|
-
name: Publish
|
|
13
|
-
deployment: production
|
|
14
|
-
script:
|
|
15
|
-
- npm version patch -m "Upgrade to %s [skip ci]"
|
|
16
|
-
- git push && git push --tags
|
|
17
|
-
- pipe: atlassian/npm-publish:1.1.0
|
|
18
|
-
variables:
|
|
19
|
-
NPM_TOKEN: $NPM_TOKEN
|
|
20
|
-
EXTRA_ARGS: "--access public"
|