Skip to content

Commit 0891cda

Browse files
committed
change command to download tailwindcss
1 parent 9f3166e commit 0891cda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ jobs:
6464
- name: Install tailwindcss
6565
if: steps.check_client.outputs.requires_tailwind == 'true'
6666
run: |
67-
curl 'https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64' -o "MyApp/tailwindcss"
68-
chmod +x "MyApp/tailwindcss"
67+
curl -o "./MyApp/tailwindcss" -L "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64"
68+
chmod +x "./MyApp/tailwindcss"
6969
7070
- name: Install x tool
7171
run: dotnet tool install -g x

0 commit comments

Comments
 (0)