Trigger publish-pods from release workflow

Summary: Had the `PERSONAL_TOKEN` put in place by the OSS oncall. Still won't know if it has the right permissions until we run this. :/

Reviewed By: nikoant

Differential Revision: D24833829

fbshipit-source-id: 4fbf6e0b0abbc50d0b9a1e9b7ca8b02f6e1f5171
This commit is contained in:
Pascal Hartig
2020-11-10 04:22:20 -08:00
committed by Facebook GitHub Bot
parent 307fc18916
commit 50f2b0db5f
2 changed files with 14 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ on:
push: push:
tags: tags:
- v* - v*
workflow_dispatch:
jobs: jobs:
publish_flipper_pod: publish_flipper_pod:

View File

@@ -153,3 +153,16 @@ jobs:
with: with:
created_tag: ${{ needs.release.outputs.tag }} created_tag: ${{ needs.release.outputs.tag }}
args: Flipper-mac.dmg Flipper-linux.zip Flipper-win.zip args: Flipper-mac.dmg Flipper-linux.zip Flipper-win.zip
dispatch:
needs:
- release
runs-on: ubuntu-latest
steps:
- name: Workflow Dispatch
if: ${{ needs.release.outputs.tag != '' }}
uses: benc-uk/workflow-dispatch@v1.1
with:
workflow: Publish Pods
token: ${{ secrets.PERSONAL_TOKEN }}