v9.10.0 #28
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: Dispatch for downstream staging | |
on: | |
release: | |
types: [published] | |
env: | |
REPO: nf-osi/NF_data_curator # DCA repo of community | |
REF_DEV: refs/heads/staging # ref to develop branch | |
REPO_RAW: https://raw.githubusercontent.com/nf-osi/nf-metadata-dictionary | |
SRC_FILE: NF.jsonld | |
jobs: | |
dispatch-downstream-dev: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate input payload | |
id: payload | |
run: | | |
URL=$REPO_RAW/$GITHUB_REF_NAME/$SRC_FILE | |
INPUT=$(jq -n -c --arg url "$URL" '{ source: $url}') | |
echo "::set-output name=INPUT::$INPUT" | |
- uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: Data model staging | |
repo: ${{ env.REPO }} | |
ref: ${{ env.REF_DEV }} | |
token: ${{ secrets.SERVICE_TOKEN }} | |
inputs: ${{ steps.payload.outputs.INPUT }} |