允许设置验证依赖时的首选方法;切换语言时不再重启应用 #284
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
# Reuse the build job from build.yml | |
build: | |
# Ignore draft PRs | |
if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.pull_request.draft == false) | |
name: Build | |
uses: ./.github/workflows/build.yml | |
secrets: | |
pfx_base64_encoded: ${{ secrets.PFX_BASE64_ENCODED }} | |