Skip to content

Commit e0045ef

Browse files
committed
Moved envvar export of tag to correct block; version bump and rebuild
1 parent 9933f5d commit e0045ef

10 files changed

+14
-11
lines changed

.github/workflows/nodejs.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,6 @@ jobs:
6969
git config --global user.email "[email protected]"
7070
git config --global user.name "John Haugeland through Github Actions"
7171
node ./src/buildjs/verify_version_bump.js
72-
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
73-
echo "TAG=$TAG" >> $GITHUB_ENV
7472
7573
release:
7674
if: (github.event.pusher.name == github.event.repository.owner.name) && (github.ref == 'refs/heads/main')
@@ -80,6 +78,11 @@ jobs:
8078
steps:
8179
- uses: actions/checkout@v2
8280

81+
- name: Export tag to envvars
82+
run: |
83+
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
84+
echo "TAG=$TAG" >> $GITHUB_ENV
85+
8386
- name: Use Node.js 18.x
8487
uses: actions/setup-node@v1
8588
with:

dist/es6/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const version = "5.43.1";
1+
const version = "5.43.2";
22
export { version };

dist/jssm.es5.cjs.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.cjs.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15885,7 +15885,7 @@ function peg$parse(input, options) {
1588515885
}
1588615886
}
1588715887

15888-
const version = "5.43.1";
15888+
const version = "5.43.2";
1588915889

1589015890
// whargarbl lots of these return arrays could/should be sets
1589115891
/* eslint-disable complexity */

dist/jssm.es5.iife.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jssm.es5.iife.nonmin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -15884,7 +15884,7 @@ var jssm = (function (exports) {
1588415884
}
1588515885
}
1588615886

15887-
const version = "5.43.1";
15887+
const version = "5.43.2";
1588815888

1588915889
// whargarbl lots of these return arrays could/should be sets
1589015890
/* eslint-disable complexity */

docs/docs/classes/Machine.html

+1-1
Large diffs are not rendered by default.

docs/docs/modules.html

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jssm",
3-
"version": "5.43.1",
3+
"version": "5.43.2",
44
"engines": {
55
"node": ">=10.0.0"
66
},

src/ts/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
const version: string = "5.43.1";
2+
const version: string = "5.43.2";
33
export { version };

0 commit comments

Comments
 (0)