添加创建实例快捷方式的功能、本地化快速启动部分提示文字 #485
This file contains hidden or 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 }} | |
| PFX_PASSWORD: ${{ secrets.PFX_PASSWORD }} | |