don't use bun on CI
This commit is contained in:
parent
4ffbde0b16
commit
743320f170
2 changed files with 7 additions and 3 deletions
|
@ -12,8 +12,6 @@ jobs:
|
|||
image: nseguin42/forgejo-runner:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup bun
|
||||
run: apk add bun
|
||||
- name: dotnet restore
|
||||
run: dotnet restore
|
||||
- name: dotnet build
|
||||
|
|
|
@ -325,7 +325,13 @@
|
|||
<_ContentIncludedByDefault Remove="wwwroot\lib\20\solid\x-mark.svg" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="Tailwind" BeforeTargets="Build">
|
||||
|
||||
<Target Name="Tailwind" BeforeTargets="Build" Condition="'$(CI)' != 'true'">
|
||||
<Exec Command="bun run css:build"/>
|
||||
</Target>
|
||||
|
||||
|
||||
<Target Name="Tailwind" BeforeTargets="Build" Condition="'$(CI)' == 'true'">
|
||||
<Exec Command="npm run css:build"/>
|
||||
</Target>
|
||||
</Project>
|
Loading…
Reference in a new issue