From 219ec1cee03ac882a05db465f621c7fc994a0ee9 Mon Sep 17 00:00:00 2001 From: Andy Pack Date: Fri, 19 Jul 2024 17:19:59 +0100 Subject: [PATCH] hardcoding pull url --- .gitea/workflows/ci.yml | 25 ++++++------------------- 1 file changed, 6 insertions(+), 19 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3c49313..678bbf9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -14,6 +14,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} uses: actions/setup-dotnet@v3.0.3 with: @@ -25,25 +27,6 @@ jobs: - name: Test run: dotnet test --no-restore --verbosity normal Selector.Core.sln - build-MAUI: - - runs-on: windows-latest - name: Build MAUI - needs: [build] # for ignoring bad builds - strategy: - fail-fast: false - matrix: - dotnet-version: [ '8.0.x' ] - - steps: - - uses: actions/checkout@v2 - - name: Setup .NET Core SDK ${{ matrix.dotnet-version }} - uses: actions/setup-dotnet@v3.0.3 - with: - dotnet-version: ${{ matrix.dotnet-version }} - - name: Build - run: dotnet build --configuration Debug Selector.MAUI\Selector.MAUI.csproj - build-Docker: runs-on: ubuntu-latest @@ -53,6 +36,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -92,6 +77,8 @@ jobs: steps: - uses: actions/checkout@v2 + with: + github-server-url: https://gitea.sheep-ghoul.ts.net - name: Install Node ${{ matrix.node }} uses: actions/setup-node@v2