Building maps for commit af30d97e26a1f323cdfa413cca0c2671b8bf0a1f by hannesaltmann #575
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: mapbuilder | |
run-name: Building maps for commit ${{ github.sha }} by ${{ github.actor }} | |
on: | |
push | |
jobs: | |
build-maps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore cached sources | |
uses: actions/cache/restore@v4 | |
with: | |
path: .cache | |
key: sources | |
- name: Run mapbuilder | |
uses: vatger-nav/mapbuilder@main | |
- name: Store cached sources | |
uses: actions/cache/save@v4 | |
with: | |
path: .cache | |
key: sources | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "[AUTO] mapbuilder ${{ github.sha }}" | |
commit_user_name: mapbuilder | |
commit_user_email: mapbuilder@vatger.de | |
file_pattern: '*.txt' |