fix: 修改部分参数,还有yarn build 发布时windows签名的部分代码修改,才能成功 #3
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: Merge main branch to build/windows | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| permissions: | |
| contents: write | |
| jobs: | |
| merge-branch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@master | |
| - name: Merge main -> build/windows | |
| uses: devmasx/merge-branch@master | |
| with: | |
| type: now | |
| from_branch: main | |
| target_branch: build/windows | |
| github_token: ${{ github.token }} |