Merge pull request 'added servers and openapi or apisystem' (#47) fro… #149
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: 4testing multiarch-config-build | |
on: | |
push: | |
branches: | |
- 'hotfix/v*' | |
- 'release/v*' | |
- 'develop' | |
paths: | |
- 'config/**' | |
- 'install/docker/Dockerfile.app' | |
workflow_dispatch: | |
jobs: | |
select-branches: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v2 | |
- name: Dispatch Action | |
run: | | |
echo "${GITHUB_REF_NAME}" | |
curl \ | |
-X POST \ | |
-u "${{ secrets.USERNAME}}:${{secrets.TOKEN}}" \ | |
"https://api.github.com/repos/ONLYOFFICE/DocSpace-buildtools/dispatches" \ | |
-H "Accept: application/vnd.github.everest-preview+json" \ | |
--data '{"event_type": "config-trigger-action", "client_payload": { "branches": ["'"${GITHUB_REF_NAME}"'"]}}' |