Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
d03c3e9
fix: gather version for windows installation from latest releases met…
zimeg Dec 16, 2025
6f8820f
test: confirm unix and windows machines install shell scripts
zimeg Dec 16, 2025
f9628c4
test(fix): prefer default shell for operating systems runner
zimeg Dec 16, 2025
c039027
ci: make installation scripts explicit for test outcome
zimeg Dec 16, 2025
57784eb
ci: attempt a joined script for windows installation command
zimeg Dec 16, 2025
4cb5f44
ci: configure the installation path for fingerprinting without profil…
zimeg Dec 16, 2025
a126746
ci: invoke the script using an explicit shell command
zimeg Dec 16, 2025
3fb5b7b
fix: use the correct shell for each operating setup
zimeg Dec 16, 2025
d1eab43
temp: log outputs in the installation script to troubleshoot
zimeg Dec 16, 2025
4d6ebe4
temp: output an alias variable multiple times with casings
zimeg Dec 16, 2025
c9e3a29
ci: print aliases and attempt the fingerprintings
zimeg Dec 16, 2025
693ad8b
temp: what is the fingerprint doing in ci lets find out
zimeg Dec 16, 2025
5e0293c
ci: log more to test because it is confusing to me right now
zimeg Dec 16, 2025
4636e0f
ci: use a confirmed alias not another variable
zimeg Dec 16, 2025
f266322
fix: output without exiting error and diagnostics more often
zimeg Dec 16, 2025
82ac7c5
ci: setup custom shells for different workflow runs
zimeg Dec 16, 2025
7fc1800
ci: invoke scripts direct inline without matrix setup
zimeg Dec 16, 2025
85b2b75
fix: skip interactive additions to the path from claude suggestion
zimeg Dec 16, 2025
da438b4
fix: avoid hanging for unexpected command invocations
zimeg Dec 17, 2025
0915651
temp: fingerprint in ci again let us hope for the best
zimeg Dec 17, 2025
b7bc695
fix: skip conditional errors if the installation is failing
zimeg Dec 17, 2025
a06a02c
revert: undo attempts at testing windows installation in ci for now
zimeg Dec 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/install-windows-dev.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ function install_slack_cli {
else {
Write-Host "Finding the latest Slack CLI release version"
$cli_info = Invoke-RestMethod -Uri "https://docs.slack.dev/tools/metadata.json"
$SLACK_CLI_VERSION = $cli_info.'slack-cli'.releases.version[0]
$SLACK_CLI_VERSION = $cli_info.'slack-cli'.releases[0].version
}
}
catch {
Expand Down
2 changes: 1 addition & 1 deletion scripts/install-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ function install_slack_cli {
else {
Write-Host "Finding the latest Slack CLI release version"
$cli_info = Invoke-RestMethod -Uri "https://docs.slack.dev/tools/metadata.json"
$SLACK_CLI_VERSION = $cli_info.'slack-cli'.releases.version[0]
$SLACK_CLI_VERSION = $cli_info.'slack-cli'.releases[0].version
}
}
catch {
Expand Down
Loading