don't use bun on CI

This commit is contained in:
Nick Seguin 2023-12-10 01:19:55 -06:00
parent 4ffbde0b16
commit 743320f170
2 changed files with 7 additions and 3 deletions

View file

@ -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

View file

@ -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>