File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed
Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -169,9 +169,8 @@ jobs:
169169 bun build --compile --target=bun-windows-x64 --outfile test index.ts
170170 bun build --compile --target=bun-windows-x64-baseline --outfile test index.ts
171171
172- # Check version consistency and increment pre-release version number for beta only.
173- - name : Bump pre-release version
174- run : yarn tsx ./.github/scripts/before-beta-release.ts
172+ - name : Set pre-release version
173+ run : yarn version ${{ needs.update_changelog.outputs.pre_release_version }}
175174
176175 - name : Build Bundles
177176 run : yarn insert-cli-metadata && yarn build-bundles
Original file line number Diff line number Diff line change @@ -192,6 +192,9 @@ jobs:
192192 bun build --compile --target=bun-windows-x64 --outfile test index.ts
193193 bun build --compile --target=bun-windows-x64-baseline --outfile test index.ts
194194
195+ - name : Set version
196+ run : yarn version ${{ needs.release_metadata.outputs.version_number }}
197+
195198 - name : Build Bundles
196199 run : yarn insert-cli-metadata && yarn build-bundles
197200
Original file line number Diff line number Diff line change @@ -190,8 +190,6 @@ for executable_name in "${executable_names[@]}"; do
190190 fi
191191done
192192
193- success " Apify CLI was installed successfully"
194-
195193tildify () {
196194 if [[ $1 = $HOME /* ]]; then
197195 local replacement=\~ /
@@ -202,8 +200,11 @@ tildify() {
202200 fi
203201}
204202
203+ success " Apify CLI was installed successfully to $Bold_Green $( tildify " $bin_dir /apify" ) "
204+ success " Actor CLI was installed successfully to $Bold_Green $( tildify " $bin_dir /actor" ) "
205+
205206if command -v apify > /dev/null; then
206- success " Run 'apify' to get started"
207+ success " Run 'apify --help ' to get started"
207208 exit
208209fi
209210
@@ -338,7 +339,10 @@ info "To get started, run:"
338339echo
339340
340341if [[ $refresh_command ]]; then
341- info_bold " $refresh_command "
342+ info_bold " $refresh_command $( info " (if the shell is not automatically refreshed) " ) "
342343fi
343344
344345info_bold " apify --help"
346+ echo
347+
348+ exec $refresh_command
You can’t perform that action at this time.
0 commit comments