-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trying to push package version into env from cli in ci/cd for auto re…
…lease; rebuild and version bump
- Loading branch information
1 parent
3d8f9e4
commit 6cd5b8b
Showing
10 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -74,4 +74,4 @@ jobs: | |
with: | ||
tag_name: ${{ env.TAG }} | ||
release_name: ${{ env.TAG }} | ||
body_path: CHANGELOG.tmp | ||
body_path: CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }; |