HTTP Request Shortcuts 的链接与 Autox.js 保持一致,使用 GitHub 仓库的链接 #6
Workflow file for this run
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: build-pr | |
on: | |
pull_request: | |
jobs: | |
prebuild: | |
uses: ./.github/workflows/prebuild.yml | |
with: | |
checkout-repo: ${{ github.repository }} | |
checkout-ref: ${{ github.ref }} | |
build-win: | |
uses: ./.github/workflows/win-build.yml | |
needs: prebuild | |
build-server: | |
uses: ./.github/workflows/server-build.yml | |
build-linux: | |
uses: ./.github/workflows/linux-package.yml | |
needs: prebuild | |
with: | |
checkout-repo: ${{ github.repository }} | |
checkout-ref: ${{ github.ref }} | |
build-mac: | |
uses: ./.github/workflows/mac-package.yml | |
needs: prebuild | |
with: | |
checkout-repo: ${{ github.repository }} | |
checkout-ref: ${{ github.ref }} |