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: