Merge pull request #17 from paneron/13-datum #89
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: trigger_webgui_deploy | |
on: | |
push: | |
branches: | |
- master | |
# - staging | |
pull_request: | |
repository_dispatch: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: false | |
jobs: | |
# Deployment job | |
trigger_webgui_deploy: | |
if: ${{ github.ref == 'refs/heads/master' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger deployment of convert.paneron.org | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: build_deploy.yml | |
repo: paneron/convert.paneron.org | |
token: ${{ secrets.GH_PANERON_CI_TOKEN }} | |
ref: main | |
# inputs: '{ "message": "blah blah", "something": false }' |