File tree 3 files changed +6
-3
lines changed
3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -102,6 +102,7 @@ jobs:
102
102
name : Github / Release
103
103
runs-on : solo-linux-medium
104
104
needs :
105
+ - prepare-release
105
106
- update-readme
106
107
steps :
107
108
- name : Harden Runner
@@ -147,6 +148,8 @@ jobs:
147
148
run : |
148
149
set -x
149
150
npm install
151
+ echo "VERSION=${{ needs.prepare-release.outputs.version }}"
152
+ [[ -n "${{ needs.prepare-release.outputs.version }}" ]] && npm version ${{ needs.prepare-release.outputs.version }} -f --no-git-tag-version
150
153
npm run build
151
154
152
155
- name : Setup JFrog CLI
Original file line number Diff line number Diff line change @@ -99,11 +99,11 @@ jobs:
99
99
run : |
100
100
set -xeo pipefail
101
101
npm install
102
+ echo "VERSION=${{ inputs.version }}"
103
+ [[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
102
104
npm run build
103
105
npm install -g @hashgraph/solo
104
106
npm link
105
- echo "VERSION=${{ inputs.version }}"
106
- [[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
107
107
which solo
108
108
node -p -e "Boolean(process.stdout.isTTY)"
109
109
chmod 755 ./.github/workflows/script/update_md.sh
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ nvm use lts/hydrogen
46
46
47
47
## Documentation
48
48
49
- [ Getting Started] ( docs/content/User/GetStarted.md )
49
+ [ Getting Started] ( https://hashgraph.github.io/solo/ )
50
50
51
51
## Support
52
52
You can’t perform that action at this time.
0 commit comments