Skip to content

Commit 6ab3c0c

Browse files
committed
fixed release artifact version issue and updated readme link
Signed-off-by: Jeromy Cannon <[email protected]>
1 parent 7965894 commit 6ab3c0c

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/flow-deploy-release-artifact.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ jobs:
102102
name: Github / Release
103103
runs-on: solo-linux-medium
104104
needs:
105+
- prepare-release
105106
- update-readme
106107
steps:
107108
- name: Harden Runner
@@ -147,6 +148,8 @@ jobs:
147148
run: |
148149
set -x
149150
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
150153
npm run build
151154
152155
- name: Setup JFrog CLI

.github/workflows/zxc-update-readme.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ jobs:
9999
run: |
100100
set -xeo pipefail
101101
npm install
102+
echo "VERSION=${{ inputs.version }}"
103+
[[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
102104
npm run build
103105
npm install -g @hashgraph/solo
104106
npm link
105-
echo "VERSION=${{ inputs.version }}"
106-
[[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
107107
which solo
108108
node -p -e "Boolean(process.stdout.isTTY)"
109109
chmod 755 ./.github/workflows/script/update_md.sh

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ nvm use lts/hydrogen
4646

4747
## Documentation
4848

49-
[Getting Started](docs/content/User/GetStarted.md)
49+
[Getting Started](https://hashgraph.github.io/solo/)
5050

5151
## Support
5252

0 commit comments

Comments
 (0)