Changing wording of Calculix case in perpendicular-flap because it is… #136
This file contains hidden or 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: Update website | |
on: | |
push: | |
branches: | |
- 'develop' | |
paths: | |
- '*/*.md' | |
- '*/images/*' | |
jobs: | |
trigger: | |
runs-on: ubuntu-latest | |
env: | |
WORKFLOW_FILENAME: update-submodules.yml | |
steps: | |
- name: Trigger workflow | |
run: | | |
curl \ | |
--request POST \ | |
--url https://api.github.com/repos/precice/precice.github.io/actions/workflows/$WORKFLOW_FILENAME/dispatches \ | |
--header "authorization: token ${{ secrets.WORKFLOW_DISPATCH_TOKEN }}" \ | |
--header "Accept: application/vnd.github.v3+json" \ | |
--data '{"ref":"master"}' \ | |
--fail |