gpt4 book ai didi

c# - 使用 github 操作进行部署时更改 appsettings 中的变量

转载 作者:行者123 更新时间:2023-12-04 10:59:21 25 4
gpt4 key购买 nike

我正在尝试使用 github 操作部署应用程序。我将我的 azure 帐户链接到我的 github 存储库,并创建了以下操作:

name: Build and deploy ASP.Net Core app to Azure Web App - my_app_name

on:
push:
branches:
- master

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master

- name: Set up .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: '3.1.102'

- name: Build with dotnet
run: dotnet build --configuration Release

- name: dotnet publish
run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp

- name: Deploy to Azure Web App
uses: azure/webapps-deploy@v1
with:
app-name: 'my_app_name'
slot-name: 'production'
publish-profile: ${{ secrets.AzureAppService_PublishProfile_xxxxxx }}
package: ${{env.DOTNET_ROOT}}/myapp

我的 appsettings.json 文件中有一些我想覆盖的变量,但我不知道如何去做。

最佳答案

您可以在将工件部署到 azure 之前添加以下操作。

您可以指定多个文件,它也支持通配符条目。

必须使用点分隔的层次结构指定环境变量键。

#substitute production appsettings entries to appsettings json file
- name: App Settings Variable Substitution
uses: microsoft/variable-substitution@v1
with:
files: '${{env.DOTNET_ROOT}}/myapp/appsettings.json'
env:
ConnectionStrings.Default: ${{ secrets.some_connection_string }}
App.ServerRootAddress: ${{ env.SERVER_ROOT_ADDRESS }}

上述操作也可用于 xml 和 yaml 文件更改。

关于c# - 使用 github 操作进行部署时更改 appsettings 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60521929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com