Skip to content

Commit

Permalink
Trying to push package version into env from cli in ci/cd for auto re…
Browse files Browse the repository at this point in the history
…lease; rebuild and version bump
  • Loading branch information
StoneCypher committed Apr 18, 2022
1 parent 3d8f9e4 commit 6cd5b8b
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "John Haugeland through Github Actions"
node ./src/buildjs/verify_version_bump.js
export TAG=$(head -1 CHANGELOG.tmp | cut -d' ' -f2)
export TAG=$(awk -F'"' '/"version": ".+"/{ print $4; exit; }' package.json)
echo "TAG=$TAG" >> $GITHUB_ENV
- name: Create the release
uses: actions/create-release@v1
Expand All @@ -74,4 +74,4 @@ jobs:
with:
tag_name: ${{ env.TAG }}
release_name: ${{ env.TAG }}
body_path: CHANGELOG.tmp
body_path: CHANGELOG.md
2 changes: 1 addition & 1 deletion dist/es6/version.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const version = "5.41.4";
const version = "5.41.8";
export { version };
2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.cjs.nonmin.js
Original file line number Diff line number Diff line change
Expand Up @@ -15885,7 +15885,7 @@ function peg$parse(input, options) {
}
}

const version = "5.41.4";
const version = "5.41.8";

// whargarbl lots of these return arrays could/should be sets
/* eslint-disable complexity */
Expand Down
2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/jssm.es5.iife.nonmin.js
Original file line number Diff line number Diff line change
Expand Up @@ -15884,7 +15884,7 @@ var jssm = (function (exports) {
}
}

const version = "5.41.4";
const version = "5.41.8";

// whargarbl lots of these return arrays could/should be sets
/* eslint-disable complexity */
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/classes/Machine.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/docs/modules.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jssm",
"version": "5.41.7",
"version": "5.41.8",
"engines": {
"node": ">=10.0.0"
},
Expand Down
2 changes: 1 addition & 1 deletion src/ts/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

const version: string = "5.41.4";
const version: string = "5.41.8";
export { version };

0 comments on commit 6cd5b8b

Please sign in to comment.