fix(condo): DOMA-8384 fixed error handler for condo server utils (sub… #5203
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: gitexporter | |
on: | |
schedule: | |
- cron: '10 */12 * * *' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
gitexporter: | |
name: Gitexporter | |
runs-on: self-hosted | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ssh-key: ${{ secrets.SSH_DOCK_SERVER_PRIVATE_KEY }} | |
- name: Checkout source code | |
uses: actions/checkout@v2 | |
with: | |
repository: 'open-condo-software/condo' | |
fetch-depth: 0 | |
submodules: recursive | |
ssh-key: ${{ secrets.SSH_DOCK_SERVER_PRIVATE_KEY }} | |
path: ignore.gitexporter.source | |
ref: 'master' | |
- name: Checkout target code | |
uses: actions/checkout@v2 | |
with: | |
repository: 'open-condo-software/open-condo-platform' | |
fetch-depth: 0 | |
submodules: recursive | |
ssh-key: ${{ secrets.SSH_DOCK_SERVER_PRIVATE_KEY }} | |
path: ignore.gitexporter.target | |
ref: 'master' | |
- name: gitexporter.sh | |
run: | | |
bash .github/workflows/gitexporter.sh ignore.gitexporter.source ignore.gitexporter.target |