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 9f3166e commit 0891cdaCopy full SHA for 0891cda
.github/workflows/build-container.yml
@@ -64,8 +64,8 @@ jobs:
64
- name: Install tailwindcss
65
if: steps.check_client.outputs.requires_tailwind == 'true'
66
run: |
67
- curl 'https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64' -o "MyApp/tailwindcss"
68
- chmod +x "MyApp/tailwindcss"
+ curl -o "./MyApp/tailwindcss" -L "https://github.com/tailwindlabs/tailwindcss/releases/latest/download/tailwindcss-linux-x64"
+ chmod +x "./MyApp/tailwindcss"
69
70
- name: Install x tool
71
run: dotnet tool install -g x
0 commit comments