fix(ci): use workflow-dispatch action to trigger next branch workflow (#6977)

This commit is contained in:
Lucas Fernandes Nogueira 2023-05-16 16:44:52 -07:00 committed by GitHub
parent 994e4fd6d9
commit 2344aea176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 13 deletions

View File

@ -72,20 +72,17 @@ jobs:
if: |
steps.covector.outputs.successfulPublish == 'true' &&
contains(steps.covector.outputs.packagesPublished, 'cli.rs')
uses: peter-evans/repository-dispatch@v1
uses: benc-uk/workflow-dispatch@v1
with:
token: ${{ secrets.ORG_TAURI_BOT_PAT }}
repository: tauri-apps/tauri
event-type: publish-clijs
client-payload: '{"releaseId": "${{ steps.covector.outputs.cli.js-releaseId }}", "ref": "${{ github.ref }}" }'
workflow: publish-cli-js.yml
inputs: '{"releaseId": "${{ steps.covector.outputs.cli.js-releaseId }}", "ref": "${{ github.ref }}" }'
- name: Trigger cli.rs publishing workflow
if: |
steps.covector.outputs.successfulPublish == 'true' &&
contains(steps.covector.outputs.packagesPublished, 'cli.rs')
uses: peter-evans/repository-dispatch@v1
uses: benc-uk/workflow-dispatch@v1
with:
token: ${{ secrets.ORG_TAURI_BOT_PAT }}
repository: tauri-apps/tauri
event-type: publish-clirs
client-payload: '{"ref": "${{ github.ref }}" }'
workflow: publish-cli-rs.yml

View File

@ -92,8 +92,6 @@ jobs:
runs-on: ${{ matrix.settings.host }}
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.client_payload.ref || '' }}
- name: Setup node
uses: actions/setup-node@v3
if: ${{ !matrix.settings.docker }}
@ -403,4 +401,4 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.ORG_NPM_TOKEN }}
RELEASE_ID: ${{ github.event.client_payload.releaseId || github.event.inputs.releaseId }}
RELEASE_ID: ${{ github.event.client_payload.releaseId || inputs.releaseId }}

View File

@ -33,8 +33,6 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.client_payload.ref || '' }}
- name: 'Setup Rust'
uses: dtolnay/rust-toolchain@stable