jamespot-react-core 1.1.1 → 1.1.2
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.
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: remote-stable
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: [develop]
|
|
5
|
+
jobs:
|
|
6
|
+
build:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
|
|
9
|
+
steps:
|
|
10
|
+
- uses: actions/checkout@master
|
|
11
|
+
- name: Select Node v. 16.x (and thus npm v. 7.x)
|
|
12
|
+
uses: actions/setup-node@v2
|
|
13
|
+
with:
|
|
14
|
+
node-version: 16.x
|
|
15
|
+
- name: 🔨 set git
|
|
16
|
+
run: |
|
|
17
|
+
git config --local user.email "githubaction@localhost"
|
|
18
|
+
git config --local user.name "githubaction"
|
|
19
|
+
- name: 🔨 update package
|
|
20
|
+
run: |
|
|
21
|
+
npm version patch -m "v%s"
|
|
22
|
+
- name: Push changes on branches
|
|
23
|
+
uses: ad-m/github-push-action@master
|
|
24
|
+
with:
|
|
25
|
+
github_token: ${{ secrets.ONE_TOKEN_TO_RULE_THEM_ALL }}
|
|
26
|
+
force: true
|