File tree 1 file changed +27
-1
lines changed
1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 27
27
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null \
28
28
&& sudo apt update \
29
29
&& sudo apt install gh -y
30
-
30
+
31
31
- run : |
32
32
gh cache delete --all || true
33
33
env:
@@ -125,3 +125,29 @@ jobs:
125
125
uses : ./.github/actions/compare-bun-version
126
126
with :
127
127
bun-version : " 1.1.0"
128
+
129
+ setup-bun-download-url :
130
+ name : setup-bun from (${{ matrix.os }}, download url)
131
+ runs-on : ${{ matrix.os }}
132
+ continue-on-error : true
133
+ needs : [remove-cache]
134
+ strategy :
135
+ matrix :
136
+ os :
137
+ - ubuntu-latest
138
+ - macos-latest
139
+ - windows-latest
140
+ steps :
141
+ - name : Checkout
142
+ uses : actions/checkout@v4
143
+
144
+ - name : Setup Bun
145
+ uses : ./
146
+ id : setup_bun
147
+ with :
148
+ bun-download-url : " https://github.com/oven-sh/bun/releases/latest/download/bun-${{runner.os == 'macOS' && 'darwin' || runner.os}}-${{ runner.arch == 'X64' && 'x64' || 'aarch64' }}.zip"
149
+
150
+ - name : Run Bun
151
+ id : run_bun
152
+ run : |
153
+ bun --version
You can’t perform that action at this time.
0 commit comments