File tree Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Expand file tree Collapse file tree 2 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 88
88
verify-version-output :
89
89
name : Verify Version Output
90
90
runs-on : solo-linux-medium
91
- needs : prepare-release
91
+ needs :
92
+ - prepare-release
92
93
steps :
93
94
- name : Verify version output
94
95
env :
98
99
update-readme :
99
100
name : " Update README.md"
100
101
uses : ./.github/workflows/flow-update-readme.yaml
101
- needs : prepare-release
102
+ needs :
103
+ - prepare-release
102
104
with :
103
105
commit-changes : true
104
106
version : ${{ needs.prepare-release.outputs.version }}
@@ -114,6 +116,13 @@ jobs:
114
116
needs :
115
117
- update-readme
116
118
steps :
119
+ - name : verification and testing
120
+ env :
121
+ commit : ${{ needs.update-readme.outputs.commit-hash }}
122
+ run : |
123
+ echo "commit=${commit}"
124
+ ecoh "commit hash=${{ needs.update-readme.outputs.commit-hash }}"
125
+
117
126
- name : Checkout Code
118
127
uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
119
128
with :
Original file line number Diff line number Diff line change @@ -108,14 +108,13 @@ jobs:
108
108
sudo apt-get install gettext-base
109
109
110
110
- name : Update README.md
111
- env :
112
- VERSION : ${{ github.event.inputs.version }}
113
111
run : |
114
112
set -x
115
113
npm install -g @hashgraph/solo
116
114
npm link
117
115
118
- [[ -n "${VERSION}" ]] && npm version ${VERSION} -f --no-git-tag-version
116
+ echo "VERSION=${{ inputs.version }}"
117
+ [[ -n "${{ inputs.version }}" ]] && npm version ${{ inputs.version }} -f --no-git-tag-version
119
118
which solo
120
119
121
120
export SOLO_CLUSTER_NAME=solo
You can’t perform that action at this time.
0 commit comments