We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57784eb commit 4cb5f44Copy full SHA for 4cb5f44
.github/workflows/tests.yml
@@ -48,10 +48,11 @@ jobs:
48
matrix:
49
include:
50
- os: ubuntu-latest
51
+ path: echo "$HOME/.slack/bin" >> "$GITHUB_PATH"
52
script: ./scripts/install.sh
53
- os: windows-latest
- script: |
54
- & ./scripts/install-windows.ps1
+ path: Add-Content -Path $env:GITHUB_PATH -Value "$env:USERPROFILE\.slack\bin"
55
+ script: ./scripts/install-windows.ps1
56
runs-on: ${{ matrix.os }}
57
permissions:
58
contents: read
@@ -60,6 +61,8 @@ jobs:
60
61
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
62
with:
63
persist-credentials: false
64
+ - name: Configure the path
65
+ run: ${{ matrix.path }}
66
- name: Attempt the installation
67
run: ${{ matrix.script }}
68
0 commit comments