update overlays #828
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: update overlays | |
on: | |
workflow_dispatch: | |
repository_dispatch: | |
types: [ update_overlays ] | |
jobs: | |
update-coverage: | |
runs-on: zimmermann | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ssh-key: ${{ secrets.WORKFLOW_SSH_KEY }} | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.WORKFLOW_SSH_KEY }} | |
- name: Update all coverage overlays in a locally cloned Breitbandausbaumonitor repository | |
run: ./gradlew updateAllCoverageMaps | |
- name: Set Git author information | |
run: | | |
git config --global user.name "chkpnt CI" | |
git config --global user.email "[email protected]" | |
- name: Commit and push repository, if there are any changes | |
run: ./gradlew repoCommit repoPush --info |