Skip to content

Commit

Permalink
fix "
Browse files Browse the repository at this point in the history
  • Loading branch information
elysia-best committed Oct 18, 2024
1 parent f502aff commit 533ed70
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build-trixie:
strategy:
matrix:
devbuild: ["enabled", "disabled"]
devbuild: ['enabled', 'disabled']
runs-on: ubuntu-latest
container: docker.io/library/debian:trixie-slim
name: Build Trixie
Expand All @@ -42,15 +42,16 @@ jobs:
rm powershell.deb
- name: Build Lingmo Nightly
if: ${{ matrix.devbuild == "enabled" }}
if: ${{ matrix.devbuild == 'enabled' }}
run: |
git config --global http.sslVerify false
git config --global advice.detachedHead false
chmod +x ./build.ps1
pwsh -c "./build.ps1 -BuildFromGit"
- name: Build Lingmo Using Tag
if: ${{ matrix.devbuild == "disabled" }}
if: ${{ matrix.devbuild == 'disabled' }}
if: ${{ matrix.devbuild == 'disabled' }}
run: |
git config --global http.sslVerify false
git config --global advice.detachedHead false
Expand Down

0 comments on commit 533ed70

Please sign in to comment.