我向我的app服务添加了一个连接字符串(配置>连接字符串>+新连接字符串>保存),这是可行的。但是当我通过CI/CI工作流重新部署时,连接字符串就消失了。
在新部署之前:
在新的部署之后:
我的工作流文件:
on: [push]
name: workflow
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # checks-out your repository under $GITHUB_WORKSPACE, so your workflow can access it.
- run: dotnet --version
- run: dotnet tool restore
- run: dotnet run --project tests/Server/Server.Tests.fsproj
build-and-deploy:
if: github.ref == 'refs/heads/deploy'
needs: test
runs-on: ubuntu-latest
steps:
- name: 'Checkout Github Action'
uses: actions/checkout@v2
- name: 'Login via Azure CLI'
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: 'Restore'
run: dotnet tool restore
- name: 'Deploy'
run: dotnet run azure
发布于 2022-11-30 23:44:51
我已经使用.NET Core App
将Azure App service
部署到GitHub Actions
。
正如您所提到的,
Configuration
=> Connection Strings
中添加了新的连接字符串。当我试图从
Sync
时,收到了以下警报。
更新。
Connection String
并没有失踪。--GitHub Actions
设置.
GitHub
.
如果我们不想错过部署后完成的任何,
Disconnect
.,而不是使用Sync
选项重新部署应用程序
您可以看到可用的Connection Strings
.
https://stackoverflow.com/questions/74400786
复制相似问题