Skip to content

Commit

Permalink
fixed release artifact version issue and updated readme link
Browse files Browse the repository at this point in the history
Signed-off-by: Jeromy Cannon <[email protected]>
  • Loading branch information
jeromy-cannon committed Jan 2, 2025
1 parent 7965894 commit d404bdf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/flow-deploy-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ jobs:
name: Github / Release
runs-on: solo-linux-medium
needs:
- prepare-release
- update-readme
steps:
- name: Harden Runner
Expand Down Expand Up @@ -147,6 +148,8 @@ jobs:
run: |
set -x
npm install
echo "VERSION=${{ needs.prepare-release.outputs.version }}"
[[ -n "${{ needs.prepare-release.outputs.version }}" ]] && npm version ${{ needs.prepare-release.outputs.version }} -f --no-git-tag-version
npm run build
- name: Setup JFrog CLI
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zxc-update-readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ jobs:
run: |
set -xeo pipefail
npm install
echo "VERSION=${{ inputs.version }}"
[[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
npm run build
npm install -g @hashgraph/solo
npm link
echo "VERSION=${{ inputs.version }}"
[[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
which solo
node -p -e "Boolean(process.stdout.isTTY)"
chmod 755 ./.github/workflows/script/update_md.sh
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ nvm use lts/hydrogen

## Documentation

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

## Support

Expand Down

0 comments on commit d404bdf

Please sign in to comment.