From ea873efed54466d7f2f31b3bead5fc9805d6727d Mon Sep 17 00:00:00 2001 From: jerry08 Date: Fri, 11 Oct 2024 16:08:42 -0400 Subject: [PATCH] Update workflow --- .github/workflows/main.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce658ab..1afdef7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,6 +36,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Update API + run: | + sed -i "s/anikin_api_endpoint/${{ secrets.API_URL }}/g" Anikin/Constants.cs + - name: Create keystore file run: echo "${{ secrets.KEYSTORE_B64 }}" | base64 -d > $GITHUB_WORKSPACE/signing-key.keystore shell: bash @@ -103,6 +107,10 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Update API + run: | + sed -i "s/anikin_api_endpoint/${{ secrets.API_URL }}/g" Anikin/Constants.cs + - name: Install .NET uses: actions/setup-dotnet@v4 with: